/* Careers page specific styles */
.careers-container {
    position: relative;
    z-index: 5;
    max-width: 1000px;
    margin: 0 auto;
    padding: 40px 20px 100px;
    min-height: 100vh;
}

/* Logo override for careers page */
.careers-container #logo {
    position: relative;
    transform: none;
    top: auto;
    left: auto;
    display: block;
    margin: 0 auto 40px;
    opacity: 0.9;
    pointer-events: auto;
}

/* Heading styles */
.careers-container h1 {
    color: #39ff14;
    text-align: center;
    font-size: 2.5rem;
    margin-bottom: 30px;
    text-shadow: 
        0 0 10px rgba(57, 255, 20, 0.6),
        0 0 20px rgba(57, 255, 20, 0.4);
    letter-spacing: 0.05em;
    font-weight: 400;
}

/* Content box */
.careers-container .content {
    background-color: rgba(10, 10, 10, 0.7);
    border: 1px solid rgba(57, 255, 20, 0.2);
    border-radius: 5px;
    padding: 30px;
    box-shadow: 0 0 20px rgba(0, 0, 0, 0.5);
    backdrop-filter: blur(10px);
}

/* Description paragraph */
.description {
    color: #e0e0e0;
    font-size: 1.1rem;
    line-height: 1.6;
    margin-bottom: 30px;
    text-align: center;
}

/* Jobs table */
.jobs-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: rgba(10, 10, 10, 0.5);
}

.jobs-table thead {
    background-color: rgba(57, 255, 20, 0.1);
}

.jobs-table th {
    color: #39ff14;
    padding: 15px;
    text-align: left;
    font-weight: 600;
    border: 1px solid rgba(57, 255, 20, 0.3);
    letter-spacing: 0.05em;
}

.jobs-table th:last-child {
    text-align: center;
}

.jobs-table td {
    color: #e0e0e0;
    padding: 15px;
    border: 1px solid rgba(57, 255, 20, 0.3);
}

.jobs-table td:last-child {
    text-align: center;
}

.jobs-table tbody tr:hover {
    background-color: rgba(57, 255, 20, 0.05);
}

/* Apply button */
.apply-btn {
    background: transparent;
    border: 1px solid rgba(57, 255, 20, 0.4);
    color: rgba(57, 255, 20, 0.8);
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
    font-size: 0.9rem;
    padding: 8px 20px;
    cursor: pointer;
    transition: all 0.3s ease;
    letter-spacing: 0.05em;
    border-radius: 4px;
    display: inline-block;
    text-decoration: none;
}

.apply-btn:hover {
    border-color: rgba(57, 255, 20, 0.8);
    color: #39ff14;
    background: rgba(57, 255, 20, 0.1);
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
    box-shadow: 0 0 10px rgba(57, 255, 20, 0.3);
}

/* Back button */
.back-button {
    display: inline-block;
    margin-bottom: 30px;
    color: rgba(57, 255, 20, 0.8);
    text-decoration: none;
    font-size: 0.9rem;
    padding: 8px 15px;
    border: 1px solid rgba(57, 255, 20, 0.4);
    border-radius: 4px;
    transition: all 0.3s ease;
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, sans-serif;
}

.back-button:hover {
    background-color: rgba(57, 255, 20, 0.1);
    color: #39ff14;
    text-shadow: 0 0 10px rgba(57, 255, 20, 0.5);
}

/* Responsive styles */
@media screen and (max-width: 768px) {
    .careers-container {
        padding: 20px 15px 60px;
    }
    
    .careers-container h1 {
        font-size: 2rem;
    }
    
    .description {
        font-size: 1rem;
    }
    
    .jobs-table {
        display: block;
        overflow-x: auto;
        white-space: nowrap;
    }
    
    .jobs-table th,
    .jobs-table td {
        padding: 10px;
        font-size: 0.9rem;
    }
    
    .apply-btn {
        padding: 6px 15px;
        font-size: 0.85rem;
    }
}

@media screen and (max-width: 480px) {
    .careers-container h1 {
        font-size: 1.8rem;
    }
    
    .jobs-table th,
    .jobs-table td {
        padding: 8px;
        font-size: 0.85rem;
    }
}

