﻿/* 050 안심콜 공통 CSS */

/* 헤더 스타일 */
.header {
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.2);
    padding: 15px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    position: relative;
    z-index: 100000;
}

.header-title {
    display: flex;
    align-items: center;
    gap: 5px;
}

.header-title .number {
    color: #0D47A1;
    font-weight: 700;
    font-size: 1.2em;
    text-shadow: 0 1px 2px rgba(13, 71, 161, 0.2);
}

.header-title .text {
    color: #1565C0;
    font-weight: 500;
    text-shadow: 0 1px 2px rgba(21, 101, 192, 0.1);
}

.menu-icon {
    width: 24px;
    height: 24px;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
    cursor: pointer;
    position: relative;
}

.menu-icon span {
    width: 100%;
    height: 3px;
    background-color: rgba(255, 255, 255, 0.9);
    border-radius: 2px;
    transition: all 0.3s ease;
}

.menu-icon:hover span {
    background-color: #ffffff;
}

/* 햄버거 메뉴 드롭다운 */
.menu-dropdown {
    position: absolute;
    top: 100%;
    right: 0;
    background: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    min-width: 120px;
    z-index: 1000;
    display: none;
    margin-top: 10px;
}

.menu-dropdown.show {
    display: block;
}

.menu-dropdown a {
    display: block;
    padding: 12px 16px;
    text-decoration: none;
    color: #333;
    font-size: 14px;
    transition: background-color 0.2s;
}

.menu-dropdown a:hover {
    background-color: #f8f9fa;
}

.menu-dropdown a:first-child {
    border-radius: 8px 8px 0 0;
}

.menu-dropdown a:last-child {
    border-radius: 0 0 8px 8px;
}