/* Base Styles for the Entire Site */
body {
    font-family: 'Inter', sans-serif; /* Using Inter font from the header */
    background-color: #f0f2f5; /* Light gray background for the whole site */
    color: #1a202c; /* Default text color for body */
    line-height: 1.6;
}

/* --- Header Styles --- */
.main-header {
    background-color: #ffffff;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1rem 1.5rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.main-header .site-logo-link {
    display: flex;
    align-items: center;
    text-decoration: none;
    color: #1a202c;
    font-size: 1.5rem;
    font-weight: bold;
}

.main-header .site-logo-img {
    height: 2.5rem;
    width: 2.5rem;
    margin-right: 0.75rem;
    border-radius: 0.25rem;
}

.main-header nav a {
    color: #4a5568;
    text-decoration: none;
    font-weight: 500;
    transition: color 0.2s ease-in-out;
    padding: 0 1rem;
}

.main-header nav a:hover {
    color: #2563eb;
}

/* --- Homepage Hero Section --- */
.hero-section {
    background-color: #3b82f6;
    color: #ffffff;
    padding: 4rem 1rem;
    text-align: center;
    border-radius: 0.75rem;
    margin-top: 2rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

.hero-section .search-box {
    margin-top: 2rem;
    max-width: 600px;
    margin-left: auto;
    margin-right: auto;
}

.hero-section .gcse-searchbox-only {
    /* Style for the search box container */
    width: 100%;
    margin: 0 auto;
}


/* --- Job List Page Specific Styles --- */
.job-listing-card {
    background-color: #fff;
    border-radius: 0.75rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    padding: 1.5rem;
    margin-bottom: 1rem;
    transition: transform 0.2s ease-in-out;
    display: flex;
    align-items: center;
    text-decoration: none;
    color: inherit;
}

.job-listing-card:hover {
    transform: translateY(-5px);
}

/* --- Job Detail Page Specific Styles --- */
.job-detail-container {
    background-color: #ffffff;
    border-radius: 0.75rem;
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
    padding: 2rem;
    margin-top: 2rem;
    margin-bottom: 2rem;
}

.job-detail-header img {
    border-radius: 9999px; /* rounded-full */
    margin-right: 1.5rem;
}

/* 6 Job Info Boxes Layout */
.career-single .grid {
    display: grid;
    grid-template-columns: repeat(1, minmax(0, 1fr));
    gap: 1.5rem;
    margin-top: 2rem;
}
@media (min-width: 768px) {
    .career-single .grid {
        grid-template-columns: repeat(3, minmax(0, 1fr));
    }
}

.career-box {
    background-color: #ffffff;
    padding: 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.1), 0 2px 4px -1px rgba(0, 0, 0, 0.06);
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: center;
}

.career-box h4 {
    font-size: 1rem;
    font-weight: 600;
    margin-bottom: 0.5rem;
}

.career-box p {
    font-size: 0.9rem;
    line-height: 1.4;
}

.career-box i {
    color: #2563eb;
    font-size: 2.25rem;
    margin-bottom: 0.75rem;
}


/* --- Other General Styles --- */
h1, h2, h3, h4, h5, h6 { color: #1a202c; } 
p { color: #4a5568; } 
a { color: #2563eb; text-decoration: none; }
a:hover { text-decoration: underline; }

/* Force Google Searchbox text to be visible */
.gsc-input-box input,
input.gsc-input {
    background-color: #ffffff !important;
    color: #000000 !important;
}























