/* General Styles */
body {
    font-family: Arial, sans-serif;
    margin: 0;
    padding: 0;
    background-color: #000000e8;
    color:#ffffff
}

/* Header */
header {
    background-color: #008cff;
    background: linear-gradient(to right, rgb(200, 12, 200), rgb(234, 10, 10), rgb(25, 95, 217));
    padding: 1rem;
    text-align: center;
}

/* Main Content */
main {
    padding: 2rem;
    text-align: center;
}

/* Fleet Section */
.fleet {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 1.5rem;
    margin-top: 2rem;
}

.fleet-item {
    background: rgb(79, 162, 206);
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    width: 300px;
    padding: 1rem;
    text-align: center;
}

.fleet-item img {
    width: 100%;
    border-radius: 8px;
}

.fleet-item h3 {
    margin: 0.5rem 0;
}

/* Button */
button {
    background-color: #008000;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 1rem;
    margin-top: 2rem;
}

button:hover {
    background-color: #144, 238, 144;
}

/* Flight Logging Section */
#flightLogSection {
    display: none;
    margin-top: 2rem;
}

/* Form */
form {
    max-width: 600px;
    margin: 0 auto;
    background: rgb(135, 206, 235);
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

form div {
    margin-bottom: 1rem;
}

label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
}

input, select, textarea {
    width: 100%;
    padding: 0.5rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}

/* Flight Details Section */
#flightDetails {
    margin-top: 2rem;
    padding: 1rem;
    background: #f80000;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

#flightDetails h2 {
    margin-top: 0;
}

/* Flight Count */
#flightCount {
    margin-top: 1rem;
    font-size: 1.2rem;
    color: #000000;
    text-align: center;
}
