p {
    font-size: 1.2em; 
    line-height: 1.6; 
    color: #555555;
    margin-bottom: 15px;
    font: 'Helvetica Neue', Helvetica, Arial, sans-serif;
    font-weight: 400;
}
span {
    color:#0b03ff;
}

/* Styles for screens 600px or smaller */
@media (max-width: 480px) {
    p {
        font-size: 1em; 
        line-height: 1.4;  
    }
    
  }
@media (min-width: 481px) and (max-width: 768px) {
    p {
        font-size: 1.1em; 
        line-height: 1.5;  
    }
    
  }
@media (min-width: 769px) and (max-width: 1024px) {
    p {
        font-size: 1.15em; 
        line-height: 1.55;  
    }
    
  } 
@media (min-width: 1025px) {
    p {
        font-size: 1.2em; 
        line-height: 1.6;  
    }
    
  } 
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    padding: 20px;
}

main {
    max-width: 900px;
    margin: 0 auto;
}

/* Intro Section */
#intro-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#intro h1 {
    color: #333;
    margin-bottom: 20px;
    font-size: 2.5em;
}

#intro p {
    color: #666;
    line-height: 1.8;
    margin-bottom: 20px;
    font-size: 1.1em;
}

#intro b {
    color: #667eea;
}

#intro em {
    font-style: italic;
    color: #764ba2;
}

#intro span {
    color: #667eea;
    font-weight: bold;
}

/* Search Section */
#search-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    margin-bottom: 30px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#search-container h2 {
    color: #333;
    margin-bottom: 30px;
    font-size: 1.8em;
}

#search-form {
    display: flex;
    flex-direction: column;
    gap: 15px;
}

label {
    color: #333;
    font-weight: 600;
    font-size: 1.05em;
}

input[type="text"] {
    padding: 12px 15px;
    border: 2px solid #ddd;
    border-radius: 8px;
    font-size: 1em;
    transition: border-color 0.3s;
}

input[type="text"]:focus {
    outline: none;
    border-color: #667eea;
    box-shadow: 0 0 0 3px rgba(102, 126, 234, 0.1);
}

button[type="submit"] {
    padding: 14px 30px;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    color: white;
    border: none;
    border-radius: 8px;
    font-size: 1.05em;
    font-weight: 600;
    cursor: pointer;
    transition: transform 0.2s, box-shadow 0.2s;
    margin-top: 10px;
}

button[type="submit"]:hover {
    transform: translateY(-2px);
    box-shadow: 0 8px 20px rgba(102, 126, 234, 0.4);
}

button[type="submit"]:active {
    transform: translateY(0);
}

/* Results Section */
#results-section {
    background: white;
    border-radius: 12px;
    padding: 40px;
    box-shadow: 0 10px 30px rgba(0, 0, 0, 0.2);
}

#results-container h2 {
    color: #333;
    margin-bottom: 25px;
    font-size: 1.8em;
}

#job-results {
    list-style: none;
}

.job-card {
    background: #f8f9fa;
    border-left: 4px solid #667eea;
    padding: 20px;
    margin-bottom: 15px;
    border-radius: 8px;
    transition: transform 0.2s, box-shadow 0.2s;
}

.job-card:hover {
    transform: translateX(5px);
    box-shadow: 0 5px 15px rgba(0, 0, 0, 0.1);
}

.job-card h3 {
    color: #333;
    margin-bottom: 8px;
    font-size: 1.3em;
}

.job-card p {
    color: #666;
    margin-bottom: 8px;
    line-height: 1.6;
}

.job-card strong {
    color: #333;
}

.job-card a {
    display: inline-block;
    margin-top: 12px;
    color: white;
    background: #667eea;
    padding: 8px 16px;
    border-radius: 6px;
    text-decoration: none;
    font-size: 0.95em;
    transition: background 0.2s;
}

.job-card a:hover {
    background: #764ba2;
}

.empty-state, .error-state {
    text-align: center;
    color: #999;
    padding: 40px;
    font-size: 1.1em;
}

.error-state {
    color: #d63031;
    background: #ffe0e0;
    border-radius: 8px;
    padding: 20px;
}

.loading {
    text-align: center;
    padding: 30px;
    color: #667eea;
    font-size: 1.1em;
}

.spinner {
    display: inline-block;
    width: 40px;
    height: 40px;
    border: 4px solid #f3f3f3;
    border-top: 4px solid #667eea;
    border-radius: 50%;
    animation: spin 1s linear infinite;
    margin-right: 10px;
    vertical-align: middle;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
} 

