/* Basic Reset */
* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: Arial, sans-serif;
    background-color: #f4f5f7;
    color: #333;
}

/* Header */
.header {
    background-color: #2c3e50;
    color: #fff;
    padding: 1rem;
}

.header h1 {
    margin: 0;
    font-size: 1.5rem;
    display: inline-block;
}

.header .topnav {
    float: right;
}

.header .topnav a {
    color: #fff;
    text-decoration: none;
    margin-left: 1rem;
}

/* Container */
.container {
    display: flex;
    min-height: calc(100vh - 60px); /* subtract header/footer heights if needed */
}

/* Sidebar */
.sidebar {
    width: 220px;
    background-color: #34495e;
    color: #fff;
    padding: 1rem;
}

.sidebar a {
    display: block;
    color: #fff;
    text-decoration: none;
    padding: 0.5rem 0;
    margin: 0.25rem 0;
    border-radius: 4px;
}
.sidebar a:hover {
    background-color: #3e526c;
}

/* Main content area */
.main {
    flex: 1;
    padding: 1rem 2rem;
    background-color: #fff;
    margin: 1rem;
    border-radius: 8px;
}

/* Footer */
.footer {
    background-color: #2c3e50;
    color: #fff;
    text-align: center;
    padding: 0.5rem;
}

/* Forms, inputs, buttons */
form {
    margin-bottom: 1rem;
}
label {
    display: inline-block;
    margin-top: 0.5rem;
}
input[type="text"],
input[type="email"],
input[type="password"],
input[type="number"],
select {
    width: 100%;
    padding: 0.5rem;
    margin-top: 0.25rem;
    margin-bottom: 1rem;
    border: 1px solid #ccc;
    border-radius: 4px;
}
button {
    background-color: #27ae60;
    color: #fff;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    cursor: pointer;
}
button:hover {
    background-color: #219653;
}

/* Progress bar styling */
.progress-bar {
    width: 300px;
    height: 20px;
    border: 1px solid #ccc;
    background-color: #eee;
    margin: 5px 0;
    border-radius: 4px;
    position: relative;
}
.progress-fill {
    height: 100%;
    background-color: #27ae60;
    width: 0%;
    border-radius: 4px;
}
