/* 공통 폰트 설정 */
* {
    font-family: 'Pretendard', -apple-system, BlinkMacSystemFont, system-ui, Roboto, 'Helvetica Neue', 'Segoe UI', 'Apple SD Gothic Neo', 'Noto Sans KR', 'Malgun Gothic', 'Apple Color Emoji', 'Segoe UI Emoji', 'Segoe UI Symbol', sans-serif;
}

/* 텍스트 줄임 처리 */
.line-clamp-1 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 1;
}

.line-clamp-2 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 2;
}

.line-clamp-3 {
    overflow: hidden;
    display: -webkit-box;
    -webkit-box-orient: vertical;
    -webkit-line-clamp: 3;
}

/* 그라데이션 배경 */
.bg-gradient-to-br {
    background: linear-gradient(to bottom right, #f8fafc, #dbeafe, #e0e7ff) !important;
}

/* 체크박스 완전 숨김 */
.sr-only {
    position: absolute !important;
    width: 1px !important;
    height: 1px !important;
    padding: 0 !important;
    margin: -1px !important;
    overflow: hidden !important;
    clip: rect(0, 0, 0, 0) !important;
    white-space: nowrap !important;
    border: 0 !important;
}

/* 그레인 텍스처 */
body::before {
    content: '';
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-image: url("data:image/svg+xml,%3Csvg viewBox='0 0 400 400' xmlns='http://www.w3.org/2000/svg'%3E%3Cfilter id='noiseFilter'%3E%3CfeTurbulence type='fractalNoise' baseFrequency='0.9' numOctaves='4' stitchTiles='stitch'/%3E%3C/filter%3E%3Crect width='100%25' height='100%25' filter='url(%23noiseFilter)' opacity='0.015'/%3E%3C/svg%3E");
    pointer-events: none;
    z-index: 1;
}

.content-wrapper {
    position: relative;
    z-index: 2;
}

/* 글래스모피즘 효과 */
.glass-effect {
    background: rgba(255, 255, 255, 0.7);
    backdrop-filter: blur(20px);
    border: 1px solid rgba(255, 255, 255, 0.3);
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    z-index: 10;
}

.glass-card {
    background: rgba(255, 255, 255, 0.8);
    backdrop-filter: blur(16px);
    border: 1px solid rgba(255, 255, 255, 0.4);
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.08);
}

/* 플랫 카드 스타일 */
.flat-card {
    background: rgba(255, 255, 255, 0.9);
    border: 1px solid rgba(226, 232, 240, 0.8);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.05);
    transition: all 0.2s ease;
}

.flat-card:hover {
    border-color: rgba(99, 102, 241, 0.3);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.1);
}

.gradient-text {
    background: linear-gradient(135deg, #1e293b 0%, #475569 100%);
    -webkit-background-clip: text;
    -webkit-text-fill-color: transparent;
    background-clip: text;
}

/* 강력한 타이포그래피 */
.hero-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: 3.5rem;
    line-height: 1.1;
    letter-spacing: -0.04em;
    color: #0f172a;
}

/* 공통 페이지 제목 스타일 */
.page-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 3rem;
    line-height: 1.1;
    letter-spacing: -0.02em;
    color: #1e293b;
    margin-bottom: 1rem;
}

.page-description {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 1.125rem;
    line-height: 1.6;
    color: #64748b;
}

.section-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 700;
    font-size: 1.875rem;
    line-height: 1.2;
    letter-spacing: -0.025em;
    color: #1e293b;
}

.card-title {
    font-family: 'Pretendard', sans-serif;
    font-weight: 600;
    font-size: 1.25rem;
    line-height: 1.3;
    letter-spacing: -0.01em;
    color: #334155;
}

.metric-value {
    font-family: 'Pretendard', sans-serif;
    font-weight: 800;
    font-size: 2.25rem;
    line-height: 1;
    letter-spacing: -0.02em;
    color: #0f172a;
}

.body-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 400;
    font-size: 1rem;
    line-height: 1.6;
    color: #475569;
}

.caption-text {
    font-family: 'Pretendard', sans-serif;
    font-weight: 500;
    font-size: 0.875rem;
    line-height: 1.4;
    color: #64748b;
}

/* 큰 컨트롤 스타일 */
.large-input {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    color: #334155;
}

.large-input:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background: rgba(255, 255, 255, 1);
}

.large-input::placeholder {
    color: #94a3b8;
}

.large-select {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    color: #334155;
    cursor: pointer;
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236b7280' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
    background-position: right 16px center;
    background-repeat: no-repeat;
    background-size: 16px;
    padding-right: 48px;
    min-height: 56px;
    line-height: 1.5;
}

.large-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
}

/* 셀렉트 박스 옵션 스타일 */
.large-select option {
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    background: rgba(255, 255, 255, 0.95);
    border: none;
    cursor: pointer;
    transition: all 0.2s ease;
    min-height: 44px;
    line-height: 1.4;
}

.large-select option:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.large-select option:checked {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
}

/* 셀렉트 플레이스홀더 스타일 */
.large-select option[value=""] {
    color: #9ca3af;
    font-style: italic;
}

/* 셀렉트 박스 드롭다운 스타일 개선 */
.large-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background-color: rgba(255, 255, 255, 1);
}

.large-select:hover {
    border-color: rgba(99, 102, 241, 0.5);
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

/* 셀렉트 박스 드롭다운 스타일 (웹킷 기반 브라우저) */
.large-select::-webkit-listbox {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    padding: 8px 0;
}

.large-select::-webkit-listbox-option {
    padding: 12px 16px;
    margin: 2px 8px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    background: transparent;
    transition: all 0.2s ease;
}

.large-select::-webkit-listbox-option:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.large-select::-webkit-listbox-option:checked {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
}

/* 셀렉트 박스 드롭다운 스타일 (파이어폭스) */
.large-select:-moz-listbox {
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    padding: 8px 0;
}

.large-select:-moz-listbox-option {
    padding: 12px 16px;
    margin: 2px 8px;
    border-radius: 8px;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    background: transparent;
    transition: all 0.2s ease;
}

.large-select:-moz-listbox-option:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.large-select:-moz-listbox-option:checked {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
}

/* 셀렉트 박스 포커스 시 스타일 */
.large-select:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background-color: rgba(255, 255, 255, 1);
    background-image: url("data:image/svg+xml,%3csvg xmlns='http://www.w3.org/2000/svg' fill='none' viewBox='0 0 20 20'%3e%3cpath stroke='%236366f1' stroke-linecap='round' stroke-linejoin='round' stroke-width='1.5' d='m6 8 4 4 4-4'/%3e%3c/svg%3e");
}

/* 셀렉트 박스 호버 시 스타일 */
.large-select:hover {
    border-color: #6366f1;
    background-color: rgba(255, 255, 255, 1);
}

/* 커스텀 드롭다운 */
.custom-dropdown {
    position: relative;
    width: 100%;
}

.custom-dropdown-button {
    width: 100%;
    padding: 16px 20px;
    font-size: 1rem;
    font-weight: 500;
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    background: rgba(255, 255, 255, 0.9);
    transition: all 0.2s ease;
    color: #334155;
    cursor: pointer;
    display: flex;
    align-items: center;
    justify-content: space-between;
    text-align: left;
    min-height: 56px;
    line-height: 1.5;
}

.custom-dropdown-button:hover {
    border-color: #6366f1;
    background-color: rgba(255, 255, 255, 1);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.1);
}

.custom-dropdown-button.active {
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
    background-color: rgba(255, 255, 255, 1);
}

.dropdown-arrow {
    color: #6b7280;
    transition: transform 0.2s ease;
}

.custom-dropdown-button.active .dropdown-arrow {
    transform: rotate(180deg);
    color: #6366f1;
}

.custom-dropdown-menu {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: rgba(255, 255, 255, 0.95);
    border: 2px solid rgba(226, 232, 240, 0.8);
    border-radius: 12px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.1);
    backdrop-filter: blur(16px);
    padding: 8px;
    margin-top: 4px;
    z-index: 1000;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.2s ease;
}

.custom-dropdown-menu.show {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.dropdown-option {
    padding: 12px 16px;
    font-size: 1rem;
    font-weight: 500;
    color: #334155;
    background: transparent;
    border-radius: 8px;
    cursor: pointer;
    transition: all 0.2s ease;
    margin: 2px 0;
    min-height: 44px;
    line-height: 1.4;
    display: flex;
    align-items: center;
}

.dropdown-option:hover {
    background: rgba(99, 102, 241, 0.1);
    color: #6366f1;
}

.dropdown-option.selected {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white;
    font-weight: 600;
}

/* 플레이스홀더 옵션 스타일 */
.dropdown-option[data-value=""] {
    color: #9ca3af;
    font-style: italic;
}

.hidden-select {
    display: none !important;
}

.large-button {
    padding: 18px 36px;
    font-size: 1.1rem;
    font-weight: 600;
    border-radius: 12px;
    transition: all 0.2s ease;
    cursor: pointer;
    border: none;
    min-height: 56px;
    display: inline-flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    line-height: 1.2;
    position: relative;
    z-index: 1;
}

.large-button * {
    color: inherit;
    font-weight: inherit;
}

.large-button-primary {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    color: white !important;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.large-button-primary span {
    color: white !important;
    font-weight: 600;
    text-shadow: 0 1px 2px rgba(0, 0, 0, 0.1);
}

.large-button-primary:hover {
    background: linear-gradient(135deg, #5855eb 0%, #7c3aed 100%);
    transform: translateY(-1px);
    box-shadow: 0 4px 12px rgba(99, 102, 241, 0.3);
}

.large-button-secondary {
    background: rgba(255, 255, 255, 0.9);
    color: #334155 !important;
    border: 2px solid rgba(226, 232, 240, 0.8);
    font-weight: 600;
}

.large-button-secondary span {
    color: #334155 !important;
    font-weight: 600;
}

.large-button-secondary:hover {
    background: rgba(255, 255, 255, 1);
    border-color: #6366f1;
    color: #6366f1;
}

/* 토글 스위치 */
.toggle-switch {
    position: relative;
    display: inline-block;
    width: 56px;
    height: 32px;
    background-color: #e2e8f0;
    border-radius: 32px;
    cursor: pointer;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    border: 2px solid transparent;
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1);
}

.toggle-switch::after {
    content: '';
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background-color: white;
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2);
}

.peer:checked + .toggle-switch {
    background: linear-gradient(135deg, #6366f1 0%, #8b5cf6 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 0 0 2px rgba(99, 102, 241, 0.2);
}

.peer:checked + .toggle-switch::after {
    transform: translateX(24px);
    box-shadow: 0 2px 8px rgba(99, 102, 241, 0.3);
}

.toggle-switch:hover {
    background-color: #cbd5e1;
    transform: scale(1.02);
}

.toggle-switch:active {
    transform: scale(0.98);
}

.toggle-switch-slider {
    position: absolute;
    top: 2px;
    left: 2px;
    width: 24px;
    height: 24px;
    background: linear-gradient(135deg, #ffffff 0%, #f8fafc 100%);
    border-radius: 50%;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.15), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-switch.bg-indigo-600 {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-color: rgba(99, 102, 241, 0.2);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 2px 8px rgba(99, 102, 241, 0.3);
}

.toggle-switch.bg-indigo-600:hover {
    background: linear-gradient(135deg, #5b5ee6 0%, #4338ca 100%);
    box-shadow: inset 0 2px 4px rgba(0, 0, 0, 0.1), 0 4px 12px rgba(99, 102, 241, 0.4);
}

.toggle-switch.bg-indigo-600 .toggle-switch-slider {
    transform: translateX(24px);
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.2), 0 1px 3px rgba(0, 0, 0, 0.1);
}

.toggle-switch.bg-slate-200 {
    background: linear-gradient(135deg, #e2e8f0 0%, #cbd5e1 100%);
    border-color: rgba(203, 213, 225, 0.3);
}

.toggle-switch.bg-slate-200:hover {
    background: linear-gradient(135deg, #cbd5e1 0%, #94a3b8 100%);
}

/* 아이콘 스타일 */
.icon-container {
    width: 48px;
    height: 48px;
    border-radius: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    border: 1px solid rgba(0, 0, 0, 0.1);
}

.icon-blue {
    background: linear-gradient(135deg, #3b82f6 0%, #1d4ed8 100%);
    border-color: rgba(59, 130, 246, 0.2);
}

.icon-green {
    background: linear-gradient(135deg, #10b981 0%, #059669 100%);
    border-color: rgba(16, 185, 129, 0.2);
}

.icon-purple {
    background: linear-gradient(135deg, #8b5cf6 0%, #7c3aed 100%);
    border-color: rgba(139, 92, 246, 0.2);
}

.icon-orange {
    background: linear-gradient(135deg, #f59e0b 0%, #d97706 100%);
    border-color: rgba(245, 158, 11, 0.2);
}

.icon-yellow {
    background: linear-gradient(135deg, #eab308 0%, #ca8a04 100%);
    border-color: rgba(234, 179, 8, 0.2);
}

.icon-red {
    background: linear-gradient(135deg, #ef4444 0%, #dc2626 100%);
    border-color: rgba(239, 68, 68, 0.2);
}

.icon-indigo {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-color: rgba(99, 102, 241, 0.2);
}

.icon-teal {
    background: linear-gradient(135deg, #14b8a6 0%, #0d9488 100%);
    border-color: rgba(20, 184, 166, 0.2);
}

.icon-pink {
    background: linear-gradient(135deg, #ec4899 0%, #db2777 100%);
    border-color: rgba(236, 72, 153, 0.2);
}

/* 폼 스타일 */
.form-group {
    margin-bottom: 24px;
}

.form-label {
    display: block;
    font-weight: 600;
    font-size: 1rem;
    color: #334155;
    margin-bottom: 8px;
}

.form-help {
    font-size: 0.875rem;
    color: #64748b;
    margin-top: 4px;
}

.form-error {
    font-size: 0.875rem;
    color: #ef4444;
    margin-top: 4px;
}

.hidden-custom {
    display: none !important;
}

/* 알림 스타일 */
.alert {
    padding: 16px 20px;
    border-radius: 12px;
    margin-bottom: 24px;
    border: 1px solid;
}

.alert-success {
    background: rgba(16, 185, 129, 0.1);
    border-color: rgba(16, 185, 129, 0.2);
    color: #065f46;
}

.alert-error {
    background: rgba(239, 68, 68, 0.1);
    border-color: rgba(239, 68, 68, 0.2);
    color: #991b1b;
}

.alert-warning {
    background: rgba(245, 158, 11, 0.1);
    border-color: rgba(245, 158, 11, 0.2);
    color: #92400e;
}

.alert-info {
    background: rgba(59, 130, 246, 0.1);
    border-color: rgba(59, 130, 246, 0.2);
    color: #1e40af;
}

/* 체크박스와 라디오 버튼 스타일 */
input[type="checkbox"], input[type="radio"] {
    appearance: none;
    -webkit-appearance: none;
    -moz-appearance: none;
    width: 20px;
    height: 20px;
    border: 2px solid #cbd5e1;
    border-radius: 4px;
    background: white;
    cursor: pointer;
    position: relative;
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

input[type="checkbox"]:hover, input[type="radio"]:hover {
    border-color: #6366f1;
    transform: scale(1.05);
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.2);
}

input[type="checkbox"]:focus, input[type="radio"]:focus {
    outline: none;
    border-color: #6366f1;
    box-shadow: 0 0 0 3px rgba(99, 102, 241, 0.1);
}

input[type="checkbox"]:checked {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-color: #6366f1;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
}

input[type="checkbox"]:checked::after {
    content: '';
    position: absolute;
    left: 6px;
    top: 2px;
    width: 6px;
    height: 10px;
    border: solid white;
    border-width: 0 2px 2px 0;
    transform: rotate(45deg);
}

input[type="radio"] {
    border-radius: 50%;
}

input[type="radio"]:checked {
    background: linear-gradient(135deg, #6366f1 0%, #4f46e5 100%);
    border-color: #6366f1;
    box-shadow: 0 2px 6px rgba(99, 102, 241, 0.3);
}

input[type="radio"]:checked::after {
    content: '';
    position: absolute;
    left: 50%;
    top: 50%;
    width: 8px;
    height: 8px;
    background: white;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* 반응형 유틸리티 */
@media (max-width: 640px) {
    .hero-title {
        font-size: 2.5rem;
    }
    
    .section-title {
        font-size: 1.5rem;
    }
    
    .card-title {
        font-size: 1.125rem;
    }
    
    .metric-value {
        font-size: 1.875rem;
    }
    
    .large-input,
    .large-select {
        padding: 14px 16px;
        font-size: 0.875rem;
    }
    
    .large-button {
        padding: 16px 28px;
        font-size: 1rem;
        min-height: 52px;
    }
}

/* 대시보드 특별 스타일 */
.dashboard-chart-container {
    min-height: 320px;
    position: relative;
}

.dashboard-chart-container canvas {
    max-height: 320px !important;
}

/* 그리드 레이아웃 개선 */
.grid.grid-cols-1.xl\\:grid-cols-2 {
    display: grid;
    grid-template-columns: 1fr;
    gap: 2rem;
}

@media (min-width: 1280px) {
    .grid.grid-cols-1.xl\\:grid-cols-2 {
        grid-template-columns: repeat(2, 1fr);
    }
}

/* 대시보드 카드 강제 레이아웃 */
.dashboard-bottom-cards {
    display: grid !important;
    grid-template-columns: 1fr !important;
    gap: 2rem !important;
    width: 100% !important;
    max-width: none !important;
}

@media (min-width: 1280px) {
    .dashboard-bottom-cards {
        grid-template-columns: repeat(2, 1fr) !important;
    }
}

/* 카드 내부 요소 강제 스타일 */
.dashboard-bottom-cards .flat-card {
    width: 100% !important;
    max-width: none !important;
    flex: none !important;
}

/* 카드 내부 패딩 조정 */
.flat-card .px-8 {
    padding-left: 1.5rem;
    padding-right: 1.5rem;
}

@media (max-width: 768px) {
    .flat-card .px-8 {
        padding-left: 1rem;
        padding-right: 1rem;
    }
}

/* 사용자 메뉴 드롭다운 스타일 - 단순화 */
#user-menu-container {
    position: relative;
}

#user-menu-dropdown {
    position: absolute !important;
    top: 100% !important;
    right: 0 !important;
    margin-top: 0.25rem !important;
    min-width: 12rem !important;
    background: white !important;
    border: 1px solid #e5e7eb !important;
    border-radius: 0.5rem !important;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06) !important;
    z-index: 999999 !important;
}

#user-menu-dropdown a {
    display: block;
    padding: 0.75rem 1rem;
    color: #374151;
    text-decoration: none;
    font-size: 0.875rem;
    transition: background-color 0.15s ease;
}

#user-menu-dropdown a:hover {
    background-color: #f3f4f6;
    color: #1f2937;
}

#user-menu-dropdown a:first-child {
    border-top-left-radius: 0.5rem;
    border-top-right-radius: 0.5rem;
}

#user-menu-dropdown a:last-child {
    border-bottom-left-radius: 0.5rem;
    border-bottom-right-radius: 0.5rem;
}

/* 알림 애니메이션 */
@keyframes slideInRight {
    from {
        transform: translateX(100%);
        opacity: 0;
    }
    to {
        transform: translateX(0);
        opacity: 1;
    }
}

@keyframes slideOutRight {
    from {
        transform: translateX(0);
        opacity: 1;
    }
    to {
        transform: translateX(100%);
        opacity: 0;
    }
}

/* 알림 스타일 */
.geo-notification {
    cursor: pointer;
    transition: all 0.3s ease;
}

.geo-notification:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(0, 0, 0, 0.2);
} 