/* Website Specification Table - Premium Styles */
@import url('https://fonts.googleapis.com/css2?family=Outfit:wght@300;400;500;600;700&display=swap');

.spec-table-container {
    max-width: 800px;
    margin: 2.5rem auto;
    font-family: 'Outfit', 'Inter', sans-serif;
    border-radius: 12px;
    padding: 28px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.04);
    transition: all 0.3s ease;
}

.spec-table-title {
    font-size: 1.6rem;
    font-weight: 700;
    letter-spacing: -0.02em;
    position: relative;
    display: inline-block;
    padding-bottom: 6px;
    margin-bottom: 2.5rem !important;
}

.spec-table {
    width: 100%;
    border-collapse: separate;
    border-spacing: 0;
}

.spec-row {
    transition: background-color 0.2s ease;
}

.spec-table td {
    padding: 16px 24px;
    font-size: 0.95rem;
    line-height: 1.6;
    vertical-align: middle;
}

.spec-type {
    font-weight: 600;
    width: 45%;
}

/* Style: Minimalist Bordered */
.spec-style-minimalist-bordered {
    background: #ffffff;
    border: 1px solid #e2e8f0;
}

.spec-style-minimalist-bordered .spec-table-title {
    color: #1e293b;
    border-bottom: 2px solid #e54b2b;
}

.spec-style-minimalist-bordered .spec-table td {
    border-bottom: 1px solid #f1f5f9;
}

.spec-style-minimalist-bordered .spec-row:last-child td {
    border-bottom: none;
}

.spec-style-minimalist-bordered .spec-type {
    color: #0f172a;
    border-right: 1px solid #f1f5f9;
}

.spec-style-minimalist-bordered .spec-val {
    color: #475569;
    padding-left: 32px !important;
}

.spec-style-minimalist-bordered .spec-row:hover {
    background-color: #f8fafc;
}

/* Style: Sleek Dark Mode */
.spec-style-sleek-dark-mode {
    background: #0f172a;
    color: #f8fafc;
    border: 1px solid #1e293b;
    box-shadow: 0 10px 35px rgba(0, 0, 0, 0.3);
}

.spec-style-sleek-dark-mode .spec-table-title {
    color: #f1f5f9;
    border-bottom: 2px solid #f17a5e;
}

.spec-style-sleek-dark-mode .spec-table td {
    border-bottom: 1px solid #1e293b;
}

.spec-style-sleek-dark-mode .spec-row:last-child td {
    border-bottom: none;
}

.spec-style-sleek-dark-mode .spec-type {
    color: #f8fafc;
    border-right: 1px solid #1e293b;
}

.spec-style-sleek-dark-mode .spec-val {
    color: #94a3b8;
    padding-left: 32px !important;
}

.spec-style-sleek-dark-mode .spec-row:hover {
    background-color: rgba(255, 255, 255, 0.02);
}

/* Style: Modern Clean HSL Gradients */
.spec-style-modern-clean-hsl-gradients {
    background: linear-gradient(135deg, hsl(210, 40%, 99%) 0%, hsl(210, 30%, 97%) 100%);
    border: 1px solid hsl(210, 30%, 93%);
}

.spec-style-modern-clean-hsl-gradients .spec-table-title {
    color: hsl(210, 80%, 25%);
    border-bottom: 2px solid hsl(210, 80%, 40%);
}

.spec-style-modern-clean-hsl-gradients .spec-table td {
    border-bottom: 1px solid hsl(210, 30%, 93%);
}

.spec-style-modern-clean-hsl-gradients .spec-row:last-child td {
    border-bottom: none;
}

.spec-style-modern-clean-hsl-gradients .spec-type {
    color: hsl(210, 70%, 30%);
    border-right: 1px solid hsl(210, 30%, 93%);
}

.spec-style-modern-clean-hsl-gradients .spec-val {
    color: hsl(210, 20%, 40%);
    padding-left: 32px !important;
}

.spec-style-modern-clean-hsl-gradients .spec-row:nth-child(even) {
    background-color: rgba(255, 255, 255, 0.5);
}

.spec-style-modern-clean-hsl-gradients .spec-row:hover {
    background-color: rgba(255, 255, 255, 0.8);
}

/* Style: Accent Header Striped */
.spec-style-accent-header-striped {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-top: 4px solid #e54b2b;
}

.spec-style-accent-header-striped .spec-table-title {
    color: #004d26 !important;
    border-bottom: 2px solid #e54b2b;
}

.spec-style-accent-header-striped .spec-table td {
    border-bottom: 1px solid #e2e8f0;
}

.spec-style-accent-header-striped .spec-row:last-child td {
    border-bottom: none;
}

.spec-style-accent-header-striped .spec-row:nth-child(even) {
    background-color: #f8fafc;
}

.spec-style-accent-header-striped .spec-type {
    color: #8c220c;
    border-right: 1px solid #e2e8f0;
}

.spec-style-accent-header-striped .spec-val {
    color: #334155;
    padding-left: 32px !important;
}

.spec-style-accent-header-striped .spec-row:hover {
    background-color: #f1f5f9;
}