/* style.css */

/* Body styles */
body {
    margin: 0;
    padding: 0;
    background-color: #F0F8FF; /* Light blue background */
    font-family: Arial, sans-serif;
}

/* Sidebar styles */
.sidebar {
    background-color: #FFD700; /* Yellow background */
    width: 250px;
    height: 100%;
    position: fixed;
    top: 0;
    left: 0;
    padding-top: 20px;
}

.sidebar ul {
    list-style: none;
    padding: 0;
}

.sidebar li {
    margin-bottom: 15px;
}

.sidebar a {
    text-decoration: none;
    color: #333; /* Dark text color */
    display: block;
    padding: 10px 20px;
    transition: background-color 0.3s;
}

.sidebar a:hover {
    background-color: #333; /* Dark background on hover */
    color: #FFF; /* White text on hover */
}

/* Center content styles */
.center-content {
    margin-left: 270px; /* Adjust for sidebar width */
    padding: 20px;
}

.center-content h1 {
    color: #333; /* Dark text color */
}

/* Input and button styles */
input[type="text"] {
    width: 100%;
    padding: 10px;
    margin-bottom: 10px;
    border: 1px solid #333; /* Dark border */
    border-radius: 5px;
}

button {
    padding: 10px 20px;
    background-color: #333; /* Dark button background */
    color: #FFF; /* White button text */
    border: none;
    border-radius: 5px;
    cursor: pointer;
}

button:hover {
    background-color: #555; /* Darker background on hover */
}
