* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
    font-family: 'Arial', sans-serif;
}

body {
    background-color: #f5f5f5;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    position: relative;
}

.header {
    position: fixed;
    width: 100%;
    background-color: #333;
    color: white;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header h1 {
    font-size: 1.5rem;
}

.user-section {
    display: flex;
    align-items: center;
    gap: 1rem;
}

.username {
    font-weight: bold;
}

.logout-btn {
    background-color: #e74c3c;
    color: white;
    border: none;
    padding: 0.5rem 1rem;
    border-radius: 4px;
    cursor: pointer;
    font-size: 0.9rem;
    transition: background-color 0.3s;
}

.logout-btn:hover {
    background-color: #c0392b;
}

.main-content {
    margin-top: 100px;
    flex: 1;
    padding: 2rem;
    margin-bottom: 60px;
    /* Add space for footer */
}

.footer {
    background-color: #333;
    color: white;
    padding: 1rem;
    text-align: right;
    font-size: 0.9rem;
    position: fixed;
    bottom: 0;
    width: 100%;
}

.dashboard {
    margin-top: 2rem;
    background-color: white;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
}



.form-container {
    margin-top: 1.5rem;
    padding-bottom: 1.5rem;
}

.form-group {
    margin-bottom: 1rem;
}

.form-group label {
    display: block;
    margin-bottom: 0.5rem;
    font-weight: bold;
    color: #555;
}

.form-input {
    width: 100%;
    padding: 0.75rem;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-size: 1rem;
    transition: border-color 0.3s;
}

.extended {
    min-height: 100px;
    resize: none;
    font-family: 'Arial', sans-serif;
    line-height: 1.5;
}

.form-input:focus {
    outline: none;
    border-color: #4285f4;
    box-shadow: 0 0 0 2px rgba(66, 133, 244, 0.2);
}

.save-btn {
    margin-top: 1.5rem;
    background-color: #4285f4;
    color: white;
    border: none;
    padding: 0.75rem 1.5rem;
    border-radius: 4px;
    font-size: 1rem;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
    display: block;
    width: 100%;
    max-width: 200px;
}

.save-btn:hover {
    background-color: #3367d6;
}