/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #121212; /* Dark background */
    color: #e0e0e0; /* Light text for contrast */
    line-height: 1.6;
}

/* Container Styling */
.container {
    background-color: #1e1e1e; /* Slightly lighter dark background */
    color: #e0e0e0;
    padding: 20px;
    border-radius: 10px;
    max-width: 500px;
    margin: 50px auto;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.5);
}

/* Header */
.header {
    background-color: #121212;
    color: #e0e0e0;
    padding: 10px 20px;
    display: flex;
    justify-content: flex-end;
    align-items: center;
    border-bottom: 1px solid #333;
}

.header-right .icon-link {
    color: #e0e0e0;
    text-decoration: none;
    margin-left: 20px;
    font-size: 1rem;
    display: flex;
    align-items: center;
}

.header-right .icon-link i {
    margin-right: 5px;
}

.header-right .icon-link:hover {
    color: #ff5f00; /* Accent color for hover */
}

/* Typography */
h1 {
    text-align: center;
    margin-bottom: 20px;
    color: #ff5f00; /* Accent color */
    font-size: 2rem;
}

p {
    font-size: 1rem;
    margin: 10px 0;
    text-align: center;
}

/* Links */
a {
    color: #ff5f00; /* Accent color */
    text-decoration: none;
    font-weight: bold;
}

a:hover {
    text-decoration: underline;
}

/* Form Styling */
form {
    display: flex;
    flex-direction: column;
}

form label {
    font-size: 1rem;
    font-weight: bold;
    margin-bottom: 5px;
}

form input[type="text"],
form input[type="email"],
form textarea {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #333;
    border-radius: 5px;
    background-color: #121212; /* Matches dark theme */
    color: #e0e0e0;
    font-size: 1rem;
    box-sizing: border-box;
}

form textarea {
    resize: none;
    height: 100px;
}

form button {
    background-color: #ff5f00; /* Accent color */
    color: white;
    font-size: 1rem;
    padding: 10px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    transition: background-color 0.3s;
}

form button:hover {
    background-color: #ff4500; /* Darker accent for hover */
}

/* Success Message */
.success {
    color: #28a745;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* Error Message */
.error {
    color: #dc3545;
    font-weight: bold;
    margin-bottom: 20px;
    text-align: center;
}

/* Buttons */
.btn {
    display: inline-block;
    margin-top: 10px;
    padding: 10px 20px;
    background-color: #ff5f00; /* Accent color */
    color: white;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1rem;
    font-weight: bold;
    transition: background-color 0.3s;
    text-align: center;
}

.btn:hover {
    background-color: #ff4500; /* Darker hover effect */
}

/* Bike Listings */
.bike {
    padding: 15px;
    margin-bottom: 20px;
    border: 1px solid #333;
    border-radius: 8px;
    background-color: #1e1e1e; /* Dark background for bike cards */
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.5);
}

.bike h2 {
    margin-top: 0;
    color: #ff5f00;
    font-size: 1.5rem;
}

.bike p {
    font-size: 1rem;
    margin: 10px 0;
}

/* Responsive Design */
@media (max-width: 768px) {
    body {
        padding: 10px;
    }

    .container {
        padding: 15px;
    }

    form button {
        font-size: 0.9rem;
    }

    h1 {
        font-size: 1.8rem;
    }
}

@media (max-width: 480px) {
    h1 {
        font-size: 1.5rem;
    }

    form button {
        font-size: 0.8rem;
    }

    form textarea {
        height: 80px;
    }
}