/* Scale-up Table Styles */
body {
    font-family: Arial, sans-serif;
    margin: 20px;
    background-color: #f7f9fc;
    line-height: 1.6;
}

.container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #2c3e50;
    margin-bottom: 30px;
    font-size: 2.2em;
    font-weight: 600;
}

/* Table Styles */
table {
    width: 100%;
    border-collapse: collapse;
    box-shadow: 0 4px 8px rgba(0,0,0,0.1);
    background-color: white;
    border-radius: 8px;
    overflow: hidden;
}

thead th {
    background-color: #34495e;
    color: white;
    text-align: center;
    padding: 15px;
    font-size: 18px;
    font-weight: 600;
}

tbody td {
    padding: 12px 15px;
    border: 1px solid #ddd;
    vertical-align: top;
    font-size: 14px;
}

/* Column Width Control */
.col-descriptor {
    width: 20%;
}

.col-hackathon {
    width: 25%;
}

.col-project-engine {
    width: 25%;
}

.col-palantir {
    width: 30%;
}

/* Row Styling */
tbody tr:nth-child(even) {
    background-color: #f9f9f9;
}

tbody tr:hover {
    background-color: #f1f5f9;
    transition: background-color 0.3s ease;
}

/* Column-Specific Styling */
.descriptor {
    font-weight: bold;
    background-color: #3498db !important;
    color: white;
}

.hackathon {
    color: #e74c3c;
    font-weight: 500;
}

.project-engine {
    color: #27ae60;
    font-weight: 500;
}

.palantir {
    color: #8e44ad;
    font-weight: 500;
}

/* Footer */
footer {
    text-align: center;
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px solid #ddd;
    font-size: 12px;
    color: #7f8c8d;
}

/* Responsive Design */
@media screen and (max-width: 768px) {
    .container {
        padding: 10px;
        margin: 10px;
    }
    
    table {
        font-size: 12px;
    }
    
    thead th {
        padding: 10px 8px;
        font-size: 14px;
    }
    
    tbody td {
        padding: 8px 6px;
    }
    
    h1 {
        font-size: 1.8em;
    }
}

@media screen and (max-width: 480px) {
    h1 {
        font-size: 1.5em;
    }
    
    table {
        font-size: 10px;
    }
    
    thead th {
        padding: 8px 4px;
        font-size: 12px;
    }
    
    tbody td {
        padding: 6px 4px;
    }
}
