/* vps-toiuu-specific.css - VPS specific styles only */

/* VPS Plan Specific Styles */
.plan-pricing-table {
    margin: 1rem 0;
}

/* Button Processing State */
.btn-chon-goi.processing {
    opacity: 0.7;
    cursor: not-allowed;
    pointer-events: none;
    position: relative;
}

.btn-chon-goi.processing::after {
    content: '';
    position: absolute;
    top: 50%;
    left: 50%;
    width: 20px;
    height: 20px;
    margin: -10px 0 0 -10px;
    border: 2px solid transparent;
    border-top: 2px solid #ffffff;
    border-radius: 50%;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* VPS Page Specific Styles - only unique ones */
/* (Most styles moved to dichvu-toiuu.css) */

/* Datacenter dropdown styles */
#datacenter-group {
    display: none; /* Hidden by default, shown by JavaScript when needed */
}

#datacenter-group.show {
    display: block !important;
}

#select-datacenter {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ced4da;
    border-radius: 0.375rem;
    background-color: #fff;
}

/* Dark Mode Support */
body.dark-mode #select-datacenter {
    background-color: #4a5568;
    border-color: #718096;
    color: #e2e8f0;
}

body.dark-mode #select-datacenter option {
    background-color: #2d3748;
    color: #e2e8f0;
}

body.dark-mode .btn-chon-goi {
    /* Keep original button styles for visibility */
}