/* CloudLinux Network Verify Custom CSS */

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    margin: 0;
    font-family: 'Roboto', 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background-color: #f5f6fa;
    color: #0f315a;
}

.app-root {
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

/* Header */
.app-root__header {
    position: fixed;
    left: 0;
    right: 0;
    top: 0;
    z-index: 101;
    background: #fff;
    box-shadow: 0 2px 4px rgba(0,0,0,0.08);
}

.header {
    height: 65px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    padding: 0 32px;
    max-width: 1400px;
    margin: 0 auto;
}

.auth-header__logo img {
    height: 36px;
}

.auth-header__actions {
    display: flex;
    gap: 24px;
    align-items: center;
}

.auth-header__license-check {
    color: #5a6c7d;
    text-decoration: none;
    font-weight: 500;
    font-size: 15px;
    padding: 8px 12px;
    border-radius: 4px;
    transition: all 0.2s;
}

.auth-header__license-check:hover {
    background-color: rgba(37, 99, 235, 0.08);
    color: #2563eb;
}

/* Main Content */
.app-root__main {
    flex: 1;
    margin-top: 65px;
    overflow-y: auto;
    padding: 60px 24px;
}

.license-checker-page {
    max-width: 1200px;
    margin: 0 auto;
}

/* License Checker Card */
.license-checker-card {
    background: #fff;
    border-radius: 12px;
    border: 2px solid #e3f2fd;
    border-top: 4px solid #2196f3;
    padding: 48px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    margin-bottom: 40px;
}

.license-checker {
    display: flex;
    gap: 48px;
    align-items: flex-start;
}

.license-checker__pic {
    flex-shrink: 0;
    width: 180px;
    height: 180px;
    display: flex;
    align-items: center;
    justify-content: center;
}

.license-checker__pic svg,
.license-checker__pic img {
    width: 100%;
    height: 100%;
    object-fit: contain;
}

.license-checker__content {
    flex: 1;
}

.license-checker__info {
    margin-bottom: 32px;
}

.license-checker__title {
    font-size: 28px;
    font-weight: 500;
    color: #0f315a;
    margin-bottom: 12px;
    line-height: 1.3;
}

.license-checker__description {
    font-size: 15px;
    color: #5a6c7d;
    line-height: 1.6;
    font-weight: 400;
}

.license-checker__actions {
    display: flex;
    gap: 16px;
    align-items: stretch;
}

.license-checker__input-container {
    flex: 1;
}

.license-checker__input {
    width: 100%;
    padding: 14px 16px;
    font-size: 15px;
    border: 1px solid #d1d5db;
    border-radius: 6px;
    background-color: #fff;
    color: #0f315a;
    font-family: inherit;
    transition: all 0.2s;
}

.license-checker__input:focus {
    outline: none;
    border-color: #2563eb;
    box-shadow: 0 0 0 3px rgba(37, 99, 235, 0.1);
}

.license-checker__input::placeholder {
    color: #9ca3af;
}

.license-checker__submit {
    padding: 14px 32px;
    background: linear-gradient(135deg, #ff6b35 0%, #ff8c42 100%);
    color: #fff;
    border: none;
    border-radius: 6px;
    font-size: 14px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    cursor: pointer;
    transition: all 0.3s;
    box-shadow: 0 4px 12px rgba(255, 107, 53, 0.25);
    white-space: nowrap;
}

.license-checker__submit:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 16px rgba(255, 107, 53, 0.35);
}

.license-checker__submit:active {
    transform: translateY(0);
}

.license-checker__submit:disabled {
    opacity: 0.6;
    cursor: not-allowed;
    transform: none;
}

/* Results Section */
.license-results {
    margin-top: 48px;
}

.results-header {
    font-size: 20px;
    font-weight: 600;
    color: #0f315a;
    margin-bottom: 24px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

/* Alert Not Found */
.alert-not-found {
    background: #fff;
    border-radius: 12px;
    border-left: 4px solid #ef4444;
    padding: 32px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
}

.alert-not-found h3 {
    font-size: 20px;
    font-weight: 600;
    color: #991b1b;
    margin-bottom: 12px;
}

.alert-not-found p {
    font-size: 15px;
    color: #5a6c7d;
    margin: 0;
}

/* Table */
.standard-table {
    background: #fff;
    border-radius: 12px;
    box-shadow: 0 2px 8px rgba(0,0,0,0.04);
    overflow: hidden;
}

.standard-table__header {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.5fr;
    gap: 16px;
    padding: 20px 24px;
    background-color: #f9fafb;
    border-bottom: 2px solid #e5e7eb;
    font-weight: 600;
    color: #374151;
    font-size: 13px;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.standard-table__row {
    display: grid;
    grid-template-columns: 2fr 1.5fr 1.5fr 1.5fr 1.5fr;
    gap: 16px;
    padding: 20px 24px;
    border-bottom: 1px solid #f3f4f6;
    transition: background-color 0.2s;
    align-items: center;
}

.standard-table__row:hover {
    background-color: #f9fafb;
}

.standard-table__row:last-child {
    border-bottom: none;
}

.standard-table__col {
    font-size: 14px;
    color: #1f2937;
    display: flex;
    align-items: center;
}

.table__name-col {
    font-weight: 600;
    color: #0f315a;
}

.table__not-available {
    color: #9ca3af;
    font-style: italic;
}

.table__active {
    color: #059669;
    font-weight: 600;
}

.table__expired {
    color: #dc2626;
    font-weight: 600;
}

/* Loading */
.loading-indicator {
    text-align: center;
    padding: 48px;
    color: #2563eb;
}

.loading-indicator i {
    font-size: 48px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Icon SVG */
.verify-icon {
    width: 180px;
    height: 180px;
}

/* Responsive */
@media (max-width: 968px) {
    .license-checker {
        flex-direction: column;
        gap: 32px;
    }
    
    .license-checker-card {
        padding: 32px 24px;
    }
    
    .license-checker__pic {
        width: 140px;
        height: 140px;
        margin: 0 auto;
    }
    
    .license-checker__actions {
        flex-direction: column;
    }
    
    .license-checker__submit {
        width: 100%;
    }
    
    .standard-table__header,
    .standard-table__row {
        grid-template-columns: 1fr;
        gap: 12px;
    }
    
    .standard-table__col {
        padding: 8px 0;
    }
    
    .standard-table__col:before {
        content: attr(data-label) ': ';
        font-weight: 600;
        margin-right: 8px;
        color: #6b7280;
    }
    
    .standard-table__header {
        display: none;
    }
}

@media (max-width: 640px) {
    .header {
        padding: 0 16px;
    }
    
    .app-root__main {
        padding: 32px 16px;
    }
    
    .license-checker__title {
        font-size: 22px;
    }
}

