<style>
body {
    font-family: Arial, sans-serif;
    margin: 0;
    background-color: #f0f0f0;
}

.header {
    background-color: #0097A7;
    color: white;
    padding: 10px 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.header-title {
    font-size: 20px;
    font-weight: bold;
}

.top-bar {
    display: flex;
    flex-wrap: wrap;
    background-color: #ffffff;
    padding: 10px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.card {
    flex: 1;
    margin: 5px;
    padding: 10px;
    background-color: #e0f7fa;
    border-radius: 5px;
    text-align: center;
    font-weight: bold;
}

.tab-container {
    display: flex;
    background-color: #00796B;
    color: white;
}

.tab {
    flex: 1;
    padding: 10px;
    text-align: center;
    cursor: pointer;
    font-weight: bold;
}

.tab.active {
    background-color: #004D40;
}

.form-section {
    padding: 20px;
    background-color: white;
    margin: 20px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
}

.form-section h3 {
    margin-bottom: 15px;
    color: #00796B;
}

.form-group {
    margin-bottom: 15px;
}

label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

input[type="text"],
input[type="number"],
input[type="email"],
select {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.radio-group {
    display: flex;
    gap: 20px;
    margin-top: 5px;
}

.radio-group label {
    font-weight: normal;
}
</style>