/* Brutalist Design System - Component-Based Classes */

/* Global shadow disable - applies to ALL elements */
*, *::before, *::after {
    box-shadow: none !important;
}

/* Force remove shadows from common elements */
div, header, section, article, aside, nav, main, footer, 
table, tr, td, th, button, input, select, textarea {
    box-shadow: none !important;
}

/* Base brutalist styling - apply to any element */
.brutalist {
    border: 3px solid #333333;
    background: #ffffff;
    /* box-shadow: -4px 4px 0px #333333; */
    transition: all 0.2s ease;
}

/* Size variants */
.brutalist-sm {
    border: 2px solid #333333;
    background: #ffffff;
    /* box-shadow: -3px 3px 0px #333333; */
    transition: all 0.2s ease;
}

.brutalist-md {
    border: 3px solid #333333;
    background: #ffffff;
    /* box-shadow: -4px 4px 0px #333333; */
    transition: all 0.2s ease;
}

.brutalist-lg {
    border: 3px solid #333333;
    background: #ffffff;
    /* box-shadow: -6px 6px 0px #333333; */
    transition: all 0.2s ease;
}

.brutalist-xl {
    border: 3px solid #333333;
    background: #ffffff;
    /* box-shadow: -8px 8px 0px #333333; */
    transition: all 0.2s ease;
}

/* Hover effects - disabled */
/*
.brutalist:hover, .brutalist-sm:hover {
    transform: translate(1px, -1px);
    box-shadow: -4px 4px 0px #333333;
}

.brutalist-md:hover {
    transform: translate(1px, -1px);
    box-shadow: -5px 5px 0px #333333;
}

.brutalist-lg:hover {
    transform: translate(2px, -2px);
    box-shadow: -7px 7px 0px #333333;
}

.brutalist-xl:hover {
    transform: translate(2px, -2px);
    box-shadow: -10px 10px 0px #333333;
}
*/

/* Component-specific classes */
.brutalist-header {
    border: 3px solid #333333;
    background: #ffffff;
    /* box-shadow: -8px 8px 0px #333333; */
    padding: 40px;
    text-align: center;
    margin-bottom: 40px;
}

.brutalist-card {
    border: 3px solid #333333;
    background: #ffffff;
    /* box-shadow: -4px 4px 0px #333333; */
    transition: all 0.2s ease;
    cursor: pointer;
}

.brutalist-card:hover {
    background: #f8f8f8;
}

.brutalist-table {
    border: 3px solid #333333;
    background: #ffffff;
    /* box-shadow: -6px 6px 0px #333333; */
    margin-bottom: 30px;
    overflow-x: auto;
}

.brutalist-button {
    border: 2px solid #333333;
    background: #333333;
    color: #ffffff;
    /* box-shadow: -3px 3px 0px #666666; */
    transition: all 0.2s ease;
    cursor: pointer;
    padding: 8px 16px;
    font-family: inherit;
    font-weight: 700;
    text-transform: uppercase;
    letter-spacing: 1px;
}

.brutalist-button:hover {
    background: #000000;
}

.brutalist-stats {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    border: 3px solid #333333;
    /* box-shadow: -4px 4px 0px #333333; */
    margin: 40px 0;
}

.brutalist-grid {
    display: grid;
    gap: 15px;
    margin-bottom: 30px;
}

.brutalist-grid-2 { grid-template-columns: repeat(2, 1fr); }
.brutalist-grid-3 { grid-template-columns: repeat(3, 1fr); }
.brutalist-grid-4 { grid-template-columns: repeat(4, 1fr); }
.brutalist-grid-auto { grid-template-columns: repeat(auto-fit, minmax(280px, 1fr)); }

/* Utility classes */
.brutalist-no-shadow {
    box-shadow: none !important;
}

.brutalist-no-hover:hover {
    transform: none !important;
    box-shadow: -4px 4px 0px #333333 !important;
}

/* Theme variants */
.brutalist-dark {
    background: #333333;
    color: #ffffff;
    border-color: #666666;
}

.brutalist-accent {
    border-color: #1890ff;
    box-shadow: -4px 4px 0px #1890ff;
}

.brutalist-accent:hover {
    box-shadow: -6px 6px 0px #1890ff;
}

/* Job Card Styles */
.job-card {
    padding: 0;
}

.job-header {
    border-bottom: 2px solid #333333;
    padding-bottom: 6px;
    margin-bottom: 8px;
}

.job-title {
    font-size: 15px;
    font-weight: 900;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    color: #333333;
    line-height: 1.2;
    margin-bottom: 4px;
}

.job-dept {
    font-size: 10px;
    font-weight: 700;
    color: #333333;
    text-transform: uppercase;
    letter-spacing: 0.5px;
    opacity: 0.8;
}

.job-body {
    display: flex;
    justify-content: space-between;
    align-items: center;
    gap: 10px;
}

.salary-amount {
    font-size: 14px;
    font-weight: 900;
    color: #333333;
    font-family: monospace;
}

.job-badge {
    background: #0066cc;
    color: #ffffff;
    padding: 4px 10px;
    font-size: 9px;
    font-weight: 900;
    letter-spacing: 1px;
    text-transform: uppercase;
    white-space: nowrap;
}

/* Mobile Responsive */
@media (max-width: 768px) {
    .brutalist-stats {
        grid-template-columns: repeat(2, 1fr);
    }

    .job-title {
        font-size: 14px;
    }

    .salary-amount {
        font-size: 12px;
    }
}