* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    color: #2c3e50;
    background: linear-gradient(135deg, #64b3f4 0%, #4ca1af 100%);
    min-height: 100vh;
    padding: 20px;
}
.container {
    max-width: 1200px;
    margin: 0 auto;
}
header {
    text-align: center;
    padding: 30px 0;
    color: #0d47a1;
    text-shadow: 0 1px 3px rgba(0,0,0,0.2);
}
h1 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    font-weight: 700;
    color: #fff;
    text-shadow: 0 2px 6px rgba(0,0,0,0.3);
}
.subtitle {
    font-size: 1.2rem;
    opacity: 0.9;
    color: #fff;
}
.tabs {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    flex-wrap: wrap;
}
.tab {
    padding: 12px 24px;
    background: rgba(255,255,255,0.2);
    color: #1565c0;
    border: none;
    cursor: pointer;
    font-size: 1.1rem;
    transition: all 0.3s ease;
    margin: 5px;
    border-radius: 30px;
    backdrop-filter: blur(8px);
}
.tab.active {
    background: #0d47a1;
    color: white;
    box-shadow: 0 4px 15px rgba(13, 71, 161, 0.4);
    font-weight: 600;
}
.content {
    background: white;
    border-radius: 15px;
    overflow: hidden;
    box-shadow: 0 20px 40px rgba(0,0,0,0.15);
    margin-top: 20px;
}
.tab-content {
    display: none;
    padding: 30px;
}
.tab-content.active {
    display: block;
}
.jobs-grid {
    display: grid;
    gap: 20px;
}
.job-card {
    background: #e3f2fd;
    border-radius: 12px;
    padding: 20px;
    transition: all 0.3s ease;
    border-left: 5px solid #2196f3;
    box-shadow: 0 4px 10px rgba(33, 150, 243, 0.1);
}
.job-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px rgba(33, 150, 243, 0.2);
    border-left-color: #0b7dda;
}
.job-title {
    font-size: 1.3rem;
    color: #0d47a1;
    margin-bottom: 10px;
    font-weight: 600;
}
.company, .location, .deadline {
    font-size: 1rem;
    color: #333;
    margin: 8px 0;
}
.company {
    font-weight: 500;
    color: #0d47a1;
}
.apply-link {
    margin-top: 15px;
}
.apply-btn {
    display: inline-block;
    background: linear-gradient(135deg, #2196f3 0%, #0b7dda 100%);
    color: white;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 25px;
    font-size: 0.9rem;
    transition: all 0.3s ease;
    box-shadow: 0 4px 15px rgba(33, 150, 243, 0.4);
}
.apply-btn:hover {
    transform: translateY(-2px);
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.6);
    text-decoration: none;
}
.deadline-soon {
    color: #d32f2f !important;
    font-weight: 500;
}
footer {
    text-align: center;
    padding: 30px 0;
    color: #0d47a1;
    opacity: 0.8;
    font-size: 0.9rem;
}
footer p {
    color: #fff;
    text-shadow: 0 1px 2px rgba(0,0,0,0.3);
}
@media (min-width: 768px) {
    .jobs-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (min-width: 992px) {
    .jobs-grid {
        grid-template-columns: repeat(3, 1fr);
    }
}
.search-container {
    margin: 20px auto;
    max-width: 600px;
    position: relative;
}
#search-input {
    width: 100%;
    padding: 15px 20px;
    border: none;
    border-radius: 30px;
    font-size: 1rem;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
    border: 1px solid #90caf9;
    outline: none;
    transition: all 0.3s ease;
    background: rgba(255,255,255,0.95);
}
#search-input:focus {
    border-color: #2196f3;
    box-shadow: 0 6px 20px rgba(33, 150, 243, 0.2);
}
.info-badge {
    display: inline-block;
    background: #2196f3;
    color: white;
    padding: 2px 8px;
    border-radius: 12px;
    font-size: 0.7rem;
    margin-left: 10px;
}