/* 관리자 인증 관련 스타일 */

/* 관리자 정보 표시 */
.admin-info {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-top: 15px;
    padding: 12px;
    background: linear-gradient(45deg, #667eea, #764ba2);
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(102, 126, 234, 0.3);
}

.admin-details {
    display: flex;
    flex-direction: column;
    gap: 2px;
}

.admin-name {
    color: white;
    font-weight: 600;
    font-size: 14px;
}

.admin-code {
    color: rgba(255, 255, 255, 0.9);
    font-size: 12px;
    font-weight: 400;
}

.logout-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 32px;
    height: 32px;
    background: rgba(255, 255, 255, 0.2);
    color: white;
    border-radius: 6px;
    text-decoration: none;
    transition: all 0.3s ease;
    font-size: 14px;
    border: 1px solid rgba(255, 255, 255, 0.3);
}

.logout-btn:hover {
    background: rgba(255, 255, 255, 0.3);
    transform: scale(1.05);
}

.logout-btn:active {
    transform: scale(0.95);
}

/* 로그인이 필요한 경우 표시되는 메시지 */
.auth-required {
    position: fixed;
    top: 0;
    left: 0;
    right: 0;
    bottom: 0;
    background: rgba(0, 0, 0, 0.8);
    display: flex;
    align-items: center;
    justify-content: center;
    z-index: 9999;
}

.auth-message {
    background: white;
    padding: 40px;
    border-radius: 12px;
    text-align: center;
    max-width: 400px;
    box-shadow: 0 20px 60px rgba(0, 0, 0, 0.3);
}

.auth-message h2 {
    color: #333;
    margin-bottom: 15px;
    font-size: 24px;
}

.auth-message p {
    color: #666;
    margin-bottom: 25px;
    line-height: 1.5;
}

.auth-message .btn {
    display: inline-block;
    padding: 12px 24px;
    background: #667eea;
    color: white;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
}

.auth-message .btn:hover {
    background: #5a6fd8;
    transform: translateY(-2px);
}

/* 모바일 대응 */
@media (max-width: 768px) {
    .admin-info {
        padding: 10px;
        margin-top: 10px;
    }
    
    .admin-name {
        font-size: 13px;
    }
    
    .admin-code {
        font-size: 11px;
    }
    
    .logout-btn {
        width: 28px;
        height: 28px;
        font-size: 12px;
    }
} 