/* Main styles for API Testing App */
body {
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    line-height: 1.6;
    max-width: 900px;
    margin: 0 auto;
    padding: 20px;
    background-color: #f8f9fa;
    color: #333;
}

header {
    background-color: #4a76a8;
    color: white;
    padding: 1rem;
    border-radius: 5px;
    margin-bottom: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

h1 {
    color: #2c3e50;
    border-bottom: 2px solid #eee;
    padding-bottom: 10px;
}

.container {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 5px;
    padding: 20px;
    margin-top: 20px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.05);
}

.item {
    background-color: #f9f9f9;
    border-radius: 5px;
    padding: 15px;
    margin-bottom: 15px;
    transition: transform 0.2s;
    border-left: 4px solid #4a76a8;
}

.item:hover {
    transform: translateY(-3px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
}

.item h3 {
    margin-top: 0;
    color: #4a76a8;
}

.unavailable {
    color: #e74c3c;
    font-weight: bold;
}

.available {
    color: #27ae60;
    font-weight: bold;
}

.api-link {
    display: inline-block;
    margin-top: 20px;
    padding: 10px 15px;
    background-color: #4a76a8;
    color: white;
    text-decoration: none;
    border-radius: 4px;
    font-weight: bold;
    transition: background-color 0.2s;
}

.api-link:hover {
    background-color: #3d6293;
}

footer {
    margin-top: 30px;
    text-align: center;
    color: #7f8c8d;
    font-size: 0.9rem;
}
