﻿
/* استایل‌های پنل کاربری */
.user-panel-container {
    display: flex;
    flex-direction: column;
    height: 100%;
}

.user-avatar {
    width: 80px;
    height: 80px;
    border-radius: 50%;
    background-color: #f0f8ff;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto;
    border: 2px solid #0d6efd;
}

.user-avatar i {
    font-size: 48px;
    color: #0d6efd;
}

.user-menu .list-group-item {
    border-radius: 8px;
    margin-bottom: 5px;
    transition: all 0.3s ease;
}

.user-menu .list-group-item:hover {
    background-color: #f8f9fa;
    transform: translateX(-5px);
}

.user-menu .list-group-item i {
    width: 20px;
    text-align: center;
}

#logoutBtn {
    margin-top: auto;
    border-radius: 8px;
    transition: all 0.3s ease;
}

#logoutBtn:hover {
    background-color: #dc3545;
    color: white;
}

/* استایل‌های فیلد OTP */
.otp-input-container {
    display: flex;
    justify-content: space-between;
    direction: ltr;
}

.otp-input-canvas {
    height: 50px;
    text-align: center;
    font-size: 24px;
    border: 1px solid #ced4da;
    border-radius: 8px;
    margin: 0 2px;
}

.otp-input-canvas:focus {
    border-color: #0d6efd;
    box-shadow: 0 0 0 0.25rem rgba(13, 110, 253, 0.25);
    outline: none;
}
/* استایل پیام نیاز به ورود */
.login-alert {
    position: fixed;
    top: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    min-width: 300px;
    max-width: 80%;
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.15);
    border-radius: 8px;
    padding: 12px 20px;
    animation: fadeInDown 0.5s ease;
}

