@import url('https://fonts.googleapis.com/css2?family=Montserrat:wght@400;500;600;700&display=swap');

* {
    font-family: 'Montserrat', sans-serif;
}

/* Cabinet Container */
.cabinet-container {
    min-height: 100vh;
    padding-top: 80px;
    padding-bottom: 40px;
    background-image: url('../images/background.png');
    background-size: auto;
    display: flex;
    align-items: center;
    justify-content: center;
}

/* Main Cabinet Window */
.cabinet-window {
    width: 100%;
    max-width: 1000px;
    margin: 20px;
    background: rgba(0, 0, 0, 0.7);
    backdrop-filter: blur(20px);
    -webkit-backdrop-filter: blur(20px);
    border-radius: 12px;
    overflow: hidden;
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.37);
}

.cabinet-window:hover {
    box-shadow: 0 8px 32px 0 rgba(0, 0, 0, 0.5);
}

/* Cabinet Header */
.cabinet-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px 30px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.cabinet-header h1 {
    color: var(--auth-text);
    font-size: 20px; /* Reduced from 24px */
    font-weight: 600;
}

.logout-button {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    background: rgba(255, 69, 69, 0.1);
    border-radius: 4px;
    font-size: 14px;
    font-weight: 500;
    color: var(--exit-color);
    text-decoration: none;
    transition: all 0.3s ease;
}

.logout-button:hover {
    background: rgba(255, 69, 69, 0.2);
}

.logout-button svg {
    width: 18px;
    height: 18px;
}

/* Cabinet Layout */
.cabinet-layout {
    display: flex;
    min-height: 400px;
}

/* Sidebar Navigation */
.cabinet-sidebar {
    width: 240px;
    border-right: 1px solid rgba(255, 255, 255, 0.1);
    background: rgba(0, 0, 0, 0.3);
}

.cabinet-nav {
    padding: 20px 0;
}

.cabinet-nav-item {
    display: flex;
    align-items: center;
    gap: 12px;
    padding: 12px 24px;
    color: var(--auth-text);
    text-decoration: none;
    transition: all 0.3s ease;
    border-left: 3px solid transparent;
}

.cabinet-nav-item svg {
    width: 20px;
    height: 20px;
    stroke: currentColor;
}

.cabinet-nav-item:hover {
    background: rgba(129, 135, 255, 0.1);
}

.cabinet-nav-item.active {
    background: rgba(129, 135, 255, 0.1);
    border-left-color: var(--main-color);
    color: var(--main-color);
}

.cabinet-nav-item.disabled {
    opacity: 0.5;
    cursor: not-allowed;
    position: relative;
    padding-right: 40px;
}

.cabinet-nav-item.disabled:hover {
    background: none;
}

.tab-lock {
    position: absolute;
    right: 12px;
    top: 50%;
    transform: translateY(-50%);
    color: var(--exit-color);
}

.tab-lock svg {
    stroke: currentColor;
}


/* Main Content Area */
.cabinet-main {
    flex: 1;
    padding: 30px;
    background: rgba(14, 14, 14, 0.7);
}

/* Tab Content */
.tab-content {
    display: none;
    opacity: 0;
    transition: opacity 0.3s ease;
}

.tab-content.active {
    display: block;
    opacity: 1;
}

/* Account Tab Styles */
.user-info {
    display: flex;
    align-items: center;
    gap: 15px;
    padding: 20px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    margin-bottom: 30px;
}

.user-avatar {
    width: 64px;
    height: 64px;
    background: var(--main-color);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    font-size: 24px;
    color: #ffffff;
    overflow: hidden;
    cursor: pointer;
    transition: all 0.3s ease;
}

.user-avatar:hover {
    opacity: 0.8;
}

.user-avatar img {
    width: 100%;
    height: 100%;
    object-fit: cover;
}

.user-details h2 {
    color: #ffffff;
    font-size: 14px;
    margin-bottom: 4px;
    user-select: none;
}

#email {
    font-size: 12px; 
    font-weight: 400;
    color: var(--text-gray);
    margin-top: -4px; 
}

.user-role {
    color: var(--text-gray);
    font-size: 12px; 
}

.badge {
    display: inline-flex;
    align-items: center;
    gap: 8px;
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px; /* Reduced from 12px */

}

.badge.default {
    background: rgba(129, 135, 255, 0.2);
    color: var(--main-color);
}

.badge.red {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.badge.orange {
    background: rgba(102, 77, 0, 0.5);
    color: #FC3;
}

.badge.pink {
    background: rgba(255, 105, 180, 0.2);
    color: #ff69b4;
}

.badge.violet {
    background: rgba(138, 43, 226, 0.3);
    color: #8a2be2;
}

.badge.light-blue {
    background: rgba(0, 77, 102, 0.3);
    color: #3CF;
}

/* Settings Section */
.settings-section {
    margin-bottom: 30px;
}

.settings-section h3 {
    color: var(--auth-text);
    font-size: 16px; /* Reduced from 18px */
    margin-bottom: 20px;
}

.settings-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

.form-group {
    display: flex;
    align-items: center;
    gap: 15px;
}

.form-input {
    flex: 1;
    height: 40px;
    background: rgba(0, 0, 0, 0.3);
    border: none;
    border-radius: 8px;
    padding: 0 15px;
    color: var(--auth-text);
    font-size: 12px; /* Reduced from 14px */
}

.form-input::placeholder {
    color: #696969;
}

#promoInput::placeholder {
    color: #696969;
}

.form-input:focus {
    outline: none;
    border-color: var(--main-color);
}

.form-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 20px;
    height: 30px;
    margin-top: 5px;
    background-color: var(--main-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 12px; /* Reduced from 14px */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
    box-shadow: 0 0 10px rgba(129, 135, 255, 0.5);
    text-decoration: none;
}

.form-button:hover {
    opacity: 0.9;
    box-shadow: 0 0 15px rgba(129, 135, 255, 0.7);
    transform: translateY(-2px);
}

/* Notifications */
#notificationsContainer {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 9999;
    display: flex;
    flex-direction: column;
    gap: 10px;
    pointer-events: none;
}

.notification {
    background: rgba(0, 0, 0, 0.85);
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    color: #ffffff;
    padding: 12px 16px;
    border-radius: 6px;
    width: 280px;
    box-shadow: 0 8px 32px rgba(0, 0, 0, 0.2);
    display: flex;
    flex-direction: column;
    font-size: 14px;
    font-weight: 500;
    opacity: 0;
    transform: translateX(20px);
    transition: all 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55);
    pointer-events: all;
    position: relative;
    overflow: hidden;
}

.notification.show {
    opacity: 1;
    transform: translateX(0);
}

.notification-content {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 12px;
    z-index: 1;
}

.notification::before {
    content: '';
    position: absolute;
    left: 0;
    top: 0;
    bottom: 0;
    width: 3px;
    background: var(--main-color);
}

.notification.success::before {
    background: #2ecc71;
}

.notification.error::before {
    background: #e74c3c;
}

.notification.info::before {
    background: #3498db;
}

.notification-close {
    background: none;
    border: none;
    color: rgba(255, 255, 255, 0.8);
    font-size: 18px;
    cursor: pointer;
    padding: 0;
    line-height: 1;
    transition: all 0.2s ease;
}

.notification-close:hover {
    color: #ffffff;
    transform: scale(1.1);
}

.notification-progress {
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background: rgba(255, 255, 255, 0.1);
    overflow: hidden;
}

.notification-progress-bar {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(255, 255, 255, 0.25);
    animation: progress 5s linear forwards;
}

@keyframes progress {
    from {
        transform: translateX(0);
    }
    to {
        transform: translateX(-100%);
    }
}

.notification.show .notification-progress-bar {
    animation: progress 5s linear forwards;
}

/* Add slide out animation */
.notification.hide {
    animation: slideOut 0.5s cubic-bezier(0.68, -0.55, 0.265, 1.55) forwards;
}

@keyframes slideOut {
    to {
        opacity: 0;
        transform: translateX(20px);
    }
}



/* Add these rules at the end of your existing CSS file */

.ban-expiration {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 5px;
}

.ban-expiration span {
    color: var(--main-color);
    font-weight: 600;
}

/* Update the existing .ban-message rule */
.ban-message {
    margin-top: 30px;
    padding: 30px;
    background: rgba(0, 0, 0, 0.3);
    border-radius: 12px;
    text-align: center;
    display: flex;
    flex-direction: column;
    align-items: center;
}

.ban-message h3 {
    color: var(--exit-color);
    font-size: 20px;
    font-weight: 600;
    margin-bottom: 15px;
}

.ban-reason {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
    max-width: 80%;
}

.appeal-button {
    margin-top: 10px;
}

/* Responsive adjustments */
@media (max-width: 768px) {
    .ban-message h3 {
        font-size: 18px;
    }

    .ban-reason,
    .ban-expiration {
        font-size: 13px;
    }
}

@media (max-width: 480px) {
    .ban-message h3 {
        font-size: 16px;
    }

    .ban-reason,
    .ban-expiration {
        font-size: 12px;
    }
}

/* Client Tab Styles */
.client-content {
    padding: 20px;
    background: rgba(14, 14, 14, 0.3);
    border-radius: 12px;
}

.version-selector,
.memory-selector {
    margin-bottom: 20px;
}

.version-selector h3,
.memory-header h3 {
    color: #ffffff;
    font-size: 16px;
    margin-bottom: 10px;
}

.select-wrapper {
    position: relative;
    width: 100%;
}

.select-button {
    width: 100%;
    padding: 12px 16px;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    color: #ffffff;
    display: flex;
    justify-content: space-between;
    align-items: center;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.select-button:hover {
    border-color: var(--main-color);
}

.select-button svg {
    transition: transform 0.3s ease;
}

.select-wrapper.active .select-button svg {
    transform: rotate(180deg);
}

.select-dropdown {
    position: absolute;
    top: calc(100% + 8px);
    left: 0;
    width: 100%;
    background: rgba(0, 0, 0, 0.95);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    overflow: hidden;
    opacity: 0;
    visibility: hidden;
    transform: translateY(-10px);
    transition: all 0.3s ease;
    z-index: 100;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.select-wrapper.active .select-dropdown {
    opacity: 1;
    visibility: visible;
    transform: translateY(0);
}

.select-option {
    padding: 12px 16px;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
    user-select: none;
    -webkit-user-select: none;
    -moz-user-select: none;
    -ms-user-select: none;
}

.select-option:hover {
    background: rgba(129, 135, 255, 0.1);
}

/* Memory Slider Styles */
.memory-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 10px;
}

.memory-value {
    color: var(--main-color);
    font-size: 12px; /* Reduced from 14px */
    font-weight: 500;
    transition: all 0.1s ease;
}

.slider-container {
    position: relative;
    width: 100%;
    height: 40px;
    display: flex;
    align-items: center;
}

.memory-slider {
    -webkit-appearance: none;
    width: 100%;
    height: 4px;
    background: rgba(255, 255, 255, 0.1);
    border-radius: 2px;
    outline: none;
    position: relative;
    z-index: 2;
    cursor: grab;
}

.memory-slider:active {
    cursor: grabbing;
}

.slider-progress {
    position: absolute;
    left: 0;
    top: 50%;
    transform: translateY(-50%);
    height: 4px;
    background: var(--main-color);
    border-radius: 2px;
    pointer-events: none;
    transition: width 0.1s ease;
}

.memory-slider::-webkit-slider-thumb {
    -webkit-appearance: none;
    width: 20px;
    height: 20px;
    background: var(--main-color);
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.memory-slider::-webkit-slider-thumb:hover,
.memory-slider::-webkit-slider-thumb:active {
    transform: scale(1.2);
}

.memory-slider::-moz-range-thumb {
    width: 20px;
    height: 20px;
    background: var(--main-color);
    border: none;
    border-radius: 50%;
    cursor: pointer;
    transition: transform 0.1s ease;
}

.memory-slider::-moz-range-thumb:hover,
.memory-slider::-moz-range-thumb:active {
    transform: scale(1.2);
}

/* Download Button */
.download-button {
    width: 100%;
    height: 48px;
    background: var(--main-color);
    border: none;
    border-radius: 8px;
    color: #ffffff;
    font-size: 14px; /* Reduced from 16px */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
}

.download-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}


/* Purchase Tab Styles */
.purchase-content {
    padding: 20px;
    background: rgba(14, 14, 14, 0.3);
    border-radius: 10px;
    max-width: 1000px;
    margin: 0 auto;
    font-size: 15px;
    user-select: none;
}

.purchase-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 16px;
    margin-bottom: 20px;
}

.price-card {
    position: relative;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    overflow: hidden;
    transition: all 0.3s ease;
    cursor: pointer;
    height: 100%;
    display: flex;
    flex-direction: column;
}

.price-card:hover {
    transform: translateY(-3px);
    border-color: var(--main-color);
}

.price-card.selected {
    border-color: var(--main-color);
    background: rgba(129, 135, 255, 0.1);
}

.popular-badge {
    position: absolute;
    top: 10px;
    right: 10px;
    background: var(--main-color);
    color: #ffffff;
    padding: 3px 10px;
    border-radius: 15px;
    font-size: 12px;
    font-weight: 500;
}

.price-content {
    padding: 20px;
    display: flex;
    flex-direction: column;
    height: 100%;
    justify-content: space-between;
}

.price-header {
    margin-bottom: 15px;
}

.duration {
    display: block;
    font-size: 16px; /* Reduced from 18px */
    font-weight: 600;
    color: #ffffff;
    margin-bottom: 6px;
}

.price-tag {
    display: flex;
    align-items: center;
    gap: 6px;
}

.current-price {
    font-size: 20px; /* Reduced from 22px */
    font-weight: 700;
    color: var(--main-color);
}

.original-price {
    font-size: 12px; /* Reduced from 14px */
    color: #696969;
    text-decoration: line-through;
}

.price-features {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.feature-item {
    display: flex;
    align-items: center;
    gap: 6px;
    color: #ffffff;
    font-size: 12px; /* Reduced from 14px */
}

.feature-item svg {
    color: var(--main-color);
    flex-shrink: 0;
    width: 16px;
    height: 16px;
}

.hwid-reset-section {
    margin-bottom: 20px;
    display: flex;
    justify-content: center;
}

.hwid-reset-card {
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    transition: all 0.3s ease;
    cursor: pointer;
    width: 100%;
    max-width: 500px;
}

.hwid-reset-card:hover {
    transform: translateY(-3px);
    border-color: var(--main-color);
}

.payment-section {
    margin-bottom: 20px;
    max-width: 700px;
    margin-left: auto;
    margin-right: auto;
}

.payment-buttons {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(240px, 1fr));
    gap: 14px;
}

.payment-button {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 10px;
    background: rgba(24, 23, 41, 0.7);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    padding: 12px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    width: 100%;
    user-select: none;
}

.payment-button:hover {
    background: rgba(34, 33, 51, 0.9);
    transform: translateY(-2px);
}

.payment-button svg {
    width: 18px;
    height: 18px;
}

.promo-section {
    margin-top: 20px;
    max-width: 500px;
    margin-left: auto;
    margin-right: auto;
}

.promo-section h3 {
    color: #ffffff;
    font-size: 14px; /* Reduced from 16px */
    font-weight: 500;
    margin-bottom: 12px;
}

.promo-input-group {
    display: flex;
    gap: 10px;
}

.promo-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.7);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 10px;
    padding: 10px 14px;
    color: #ffffff;
    font-size: 12px; /* Reduced from 14px */
    transition: all 0.3s ease;
}

.promo-input:focus {
    outline: none;
    border-color: var(--main-color);
}

.promo-input::placeholder {
    color: #696969;
}

.promo-button {
    background: var(--main-color);
    border: none;
    border-radius: 10px;
    color: #ffffff;
    padding: 10px 20px;
    font-size: 12px; /* Reduced from 14px */
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    white-space: nowrap;
}

.promo-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

@media (max-width: 768px) {
    .purchase-content {
        padding: 15px;
    }

    .purchase-grid {
        grid-template-columns: 1fr;
    }

    .payment-buttons {
        grid-template-columns: 1fr;
    }

    .promo-input-group {
        flex-direction: column;
    }

    .promo-button {
        width: 100%;
    }

    .hwid-reset-card {
        max-width: none;
    }
}


.ban-reason {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 10px;
}
/* Add these styles to your existing CSS file */

/* Add these styles to your existing CSS file */

.modal {
    display: none;
    position: fixed;
    z-index: 1000;
    left: 0;
    top: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    opacity: 0;
    transition: opacity 0.3s ease;
}

.modal.show {
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 1;
}

.modal-content {
    background: rgba(0, 0, 0, 0.9); /* Ð˜Ð·Ð¼ÐµÐ½ÐµÐ½Ð¾ Ñ 0.7 Ð½Ð° 0.9 */
    padding: 20px;
    border-radius: 12px;
    width: 90%;
    max-width: 500px;
    transform: scale(0.7);
    transition: transform 0.3s ease;
}

.modal.show .modal-content {
    transform: scale(1);
}

.modal h2 {
    color: var(--main-color);
    font-size: 20px;
    margin-bottom: 15px;
}

.modal p {
    color: var(--text-gray);
    font-size: 14px;
    margin-bottom: 15px;
}

#appealText {
    width: 100%;
    background: rgba(255, 255, 255, 0.1);
    border: 1px solid rgba(255, 255, 255, 0.2);
    border-radius: 8px;
    color: #ffffff;
    padding: 10px;
    font-size: 14px;
    resize: vertical;
    margin-bottom: 15px;
}

.modal-actions {
    display: flex;
    flex-direction: row;
    justify-content: space-between;
    gap: 10px;
    margin-top: 15px;
}

.cancel-button,
.modal-actions .appeal-button {
    flex: 1;
    height: 38px; 
    padding: 0 15px; 
    background-color: var(--main-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    box-shadow: 0 0 10px var(--main-color-rgb);
    display: inline-flex;
    align-items: center;
    justify-content: center;
}

.cancel-button:hover,
.modal-actions .appeal-button:hover {
    opacity: 0.9;
    transform: translateY(-2px);
}

.cancel-button {
    background-color: rgba(255, 255, 255, 0.1);
    color: var(--main-color);
    margin-top: 6px;
    transform: translateY(6px);
}

/* Update the existing .appeal-button styles */
.appeal-button {
    background-color: var(--main-color);
    color: #ffffff;
    border: none;
    padding: 10px 20px;
    border-radius: 8px;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.appeal-button:hover {
    opacity: 0.9;
}

.appeal-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.appeal-button {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0 24px;
    height: 40px;
    background-color: var(--main-color);
    color: #ffffff;
    border: none;
    border-radius: 8px;
    font-size: 14px;
    font-weight: 500;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: 'Montserrat', sans-serif;
}

/* Responsive adjustments for ban page */
@media (max-width: 768px) {
    .ban-message {
        padding: 20px;
    }

    .ban-message h3 {
        font-size: 18px;
    }
}

@media (max-width: 480px) {
    .ban-message {
        padding: 15px;
    }

    .ban-message h3 {
        font-size: 16px;
    }
}

@media (max-width: 768px) {
    .cabinet-window {
        margin: 10px;
    }

    .cabinet-header {
        flex-direction: column;
        align-items: flex-start;
        gap: 10px;
    }

    .cabinet-header h1 {
        font-size: 20px;
    }

    .logout-button {
        font-size: 12px;
    }

    .cabinet-layout {
        flex-direction: column;
    }

    .cabinet-sidebar {
        width: 100%;
        border-right: none;
        border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    }

    .cabinet-nav {
        display: flex;
        overflow-x: auto;
        padding: 10px 0;
    }

    .cabinet-nav-item {
        flex: 0 0 auto;
        padding: 8px 12px;
        font-size: 10px;
    }

    .cabinet-main {
        padding: 20px;
    }

    .user-info {
        flex-direction: column;
        align-items: center;
        text-align: center;
    }

    .user-avatar {
        width: 56px;
        height: 56px;
        font-size: 20px;
    }

    .user-details h2 {
        font-size: 18px;
    }

    .user-role {
        font-size: 12px;
    }

    .settings-section h3 {
        font-size: 16px;
    }

    .form-input,
    .form-button {
        font-size: 14px;
    }

    .select-button,
    .select-option {
        font-size: 14px;
    }

    .price-card {
        padding: 15px;
    }

    .duration {
        font-size: 16px;
    }

    .current-price {
        font-size: 20px;
    }

    .feature-item {
        font-size: 12px;
    }

    .payment-button {
        font-size: 12px;
    }
}



.search-box {
    display: flex;
    gap: 10px;
    max-width: 400px;
}

.search-input {
    flex: 1;
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    padding: 10px 15px;
    color: #ffffff;
    font-size: 14px;
}

.search-button {
    background: var(--main-color);
    border: none;
    border-radius: 8px;
    width: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.search-button:hover {
    opacity: 0.9;
}

.users-table {
    background: rgba(0, 0, 0, 0.2);
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 20px;
}

.table-header {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 120px 100px;
    padding: 15px;
    background: rgba(0, 0, 0, 0.3);
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-row {
    display: grid;
    grid-template-columns: 80px 1fr 1fr 120px 100px;
    padding: 15px;
    border-bottom: 1px solid rgba(255, 255, 255, 0.1);
    transition: background-color 0.3s ease;
}

.table-row:last-child {
    border-bottom: none;
}

.table-row:hover {
    background: rgba(255, 255, 255, 0.05);
}

.table-cell {
    color: #ffffff;
    font-size: 14px;
    display: flex;
    align-items: center;
}

.badges {
    padding: 4px 8px;
    border-radius: 4px;
    font-size: 12px;
    font-weight: 500;
}

.badges.green {
    background: rgba(46, 213, 115, 0.2);
    color: #2ed573;
}

.badges.red {
    background: rgba(255, 71, 87, 0.2);
    color: #ff4757;
}

.badges.orange {
    background: #664d00;
    color: #FC3;
}

.badges.light-blue {
    background: #004d66;
    color: #3CF;
}

.badges.blue {
    background: rgba(0, 102, 204, 0.2);
    color: #0066cc;
}

.badges.violet {
    background: rgba(138, 43, 226, 0.2);
    color: #8a2be2;
}

.badges.pink {
    background: rgba(255, 105, 180, 0.2);
    color: #ff69b4;
}

.action-button {
    background: none;
    border: none;
    color: var(--text-gray);
    padding: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    margin-right: 5px;
}

.action-button:hover {
    color: #ffffff;
}

.pagination {
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 20px;
}

/* Existing styles remain unchanged */

/* New styles for Subscriptions, Promo Codes, Password Reset, and Blocks */
.admin-header {
  display: flex;
  justify-content: space-between;
  align-items: center;
  margin-bottom: 20px;
}

.admin-header h2 {
  color: #ffffff;
  font-size: 18px;
  margin: 0;
}

.subscriptions-table,
.subkeys-table,
.promocodes-table,
.blocks-table,
.actions-table {
  background: rgba(0, 0, 0, 0.2);
  border-radius: 8px;
  overflow: hidden;
  margin-bottom: 20px;
}

.password-reset-form {
  display: flex;
  gap: 10px;
  max-width: 400px;
}

.form-input {
  flex: 1;
  background: rgba(0, 0, 0, 0.3);
  border: 1px solid rgba(255, 255, 255, 0.1);
  border-radius: 8px;
  padding: 10px 15px;
  color: #ffffff;
  font-size: 14px;
}

.form-button {
  background: var(--main-color);
  border: none;
  border-radius: 8px;
  padding: 10px 15px;
  color: #ffffff;
  font-size: 14px;
  cursor: pointer;
  transition: all 0.3s ease;
}

.form-button:hover {
  opacity: 0.9;
}

/* ÐžÐ±Ð½Ð¾Ð²Ð¸Ð¼ ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ñ‚Ð°Ð±Ð¾Ð² */
.admin-tabs {
  display: flex;
  background: rgba(0, 0, 0, 0.3);
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
  padding: 0 20px;
  margin-bottom: 20px;
}

.admin-tab {
  padding: 15px 20px;
  color: var(--text-gray);
  text-decoration: none;
  font-size: 14px;
  transition: all 0.3s ease;
  border-bottom: 2px solid transparent;
}

.admin-tab:hover {
  color: #ffffff;
}

.admin-tab.active {
  color: var(--main-color);
  border-bottom-color: var(--main-color);
}

/* ÐžÐ±Ð½Ð¾Ð²Ð¸Ð¼ ÑÑ‚Ð¸Ð»Ð¸ Ð´Ð»Ñ Ñ‚Ð°Ð±Ð»Ð¸Ñ† (Ð²ÐºÐ»ÑŽÑ‡Ð°Ñ Ð¿Ñ€Ð¾Ð¼Ð¾ÐºÐ¾Ð´Ñ‹) */
.table-header-4,
.table-row-4 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr auto;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header-5,
.table-row-5 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr auto;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-header-6,
.table-row-6 {
  display: grid;
  grid-template-columns: 1fr 1fr 1fr 1fr 1fr 1fr auto;
  padding: 15px;
  border-bottom: 1px solid rgba(255, 255, 255, 0.1);
}

.table-cell {
  padding: 0 10px;
  display: flex;
  align-items: center;
}

/* Responsive design */
@media (max-width: 768px) {
  .table-header,
  .table-row {
    grid-template-columns: 1fr 1fr auto;
  }

  .table-cell:nth-child(3),
  .table-cell:nth-child(4) {
    display: none;
  }

  .admin-header {
    flex-direction: column;
    align-items: flex-start;
    gap: 10px;
  }

  .password-reset-form {
    flex-direction: column;
  }
}



.pagination-button {
    background: rgba(0, 0, 0, 0.3);
    border: 1px solid rgba(255, 255, 255, 0.1);
    border-radius: 8px;
    width: 40px;
    height: 40px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #ffffff;
    cursor: pointer;
    transition: all 0.3s ease;
}

.pagination-button:hover {
    background: rgba(34, 34, 34, 0.4);
}

.pagination-button:disabled {
    opacity: 0.5;
    cursor: not-allowed;
}

.pagination-info {
    color: var(--text-gray);
    font-size: 14px;
}

@media (max-width: 480px) {
    .cabinet-header h1 {
        font-size: 18px;
    }

    .logout-button {
        font-size: 11px;
    }

    .cabinet-nav-item {
        font-size: 12px;
    }

    .user-details h2 {
        font-size: 16px;
    }

    .settings-section h3 {
        font-size: 14px;
    }

    .form-input,
    .form-button {
        font-size: 12px;
    }

    .select-button,
    .select-option {
        font-size: 12px;
    }

    .duration {
        font-size: 14px;
    }

    .current-price {
        font-size: 18px;
    }

    .feature-item {
        font-size: 11px;
    }

}

