.disabled-link {
    opacity: 0.5;
    pointer-events: none; /* یا pointer-events: auto و در JS جلوگیری کنید */
    cursor: default;
}
.notification-bell {
    position: relative;
    margin-right: 15px;
    text-decoration: none;
}
.notification-bell .badge {
    position: absolute;
    top: -5px;
    right: -8px;
    background: #e74c3c;
    color: white;
    border-radius: 50%;
    padding: 2px 5px;
    font-size: 0.65rem;
    font-weight: bold;
    min-width: 18px;
    text-align: center;
}
.notification-bell:hover { color: #1abc9c; }

.input-container {
    position: relative;
    width: 30%;
}

.form-control,
.form-select {
    width: 100%;
    border: 2px solid #e0e0e0;
    border-radius: 8px;
    transition: border-color 0.3s;
    background-color: rgb(248, 248, 248);
    appearance: none;
}

.form-control:focus,
.form-select:focus {
    border-color: #3498db;
    outline: none;
}

.floating-label {
    position: absolute;
    right: 20px;
    top: 14px;
    background: rgb(248, 248, 248);
    padding: 0 8px;
    color: #95a5a6;
    font-size: 16px;
    transition: all 0.3s;
    pointer-events: none;
}

.form-control:focus~.floating-label,
.form-control:not(:placeholder-shown)~.floating-label,
.form-select:focus~.floating-label,
.form-select:valid~.floating-label {
    top: -10px;
    font-size: 13px;
    color: #3498db;
}
.card {
    border: none;
    border-radius: 20px;
    box-shadow: 0 15px 35px rgba(0, 0, 0, 0.1);
    background: var(--glass-bg);
    backdrop-filter: blur(10px);
    overflow: hidden;
}
.card-header { background: var(--primary) !important; padding: 25px !important; }
@media screen and (max-width: 1024px) {
    .form-control, .form-select{
        font-size: 13px;
    }
    .floating-label {
        top: 11px;
        right: 8px;
        font-size: 11px;
    }
    .form-control:focus~.floating-label, 
    .form-control:not(:placeholder-shown)~.floating-label, 
    .form-select:valid~.floating-label {
        font-size: 10px;
    }
}
@media screen and (max-width: 992px) {
    .floating-label {
        top: 11px;
    }
}
@media screen and (max-width: 576px) {
    .floating-label{
        font-size: 10px;
        top: 15px;
        right: 20px;
    }
}