121 lines
1.7 KiB
CSS
121 lines
1.7 KiB
CSS
.headcount-container {
|
|
max-width: 500px;
|
|
margin: 0 auto;
|
|
padding: 20px;
|
|
font-family: Arial, sans-serif;
|
|
background-color: #f9f9f9;
|
|
border-radius: 8px;
|
|
box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.heading {
|
|
text-align: center;
|
|
color: #333;
|
|
margin-bottom: 20px;
|
|
}
|
|
|
|
.form {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 15px;
|
|
}
|
|
|
|
.input-group {
|
|
display: flex;
|
|
flex-direction: column;
|
|
gap: 5px;
|
|
}
|
|
|
|
.label {
|
|
font-size: 14px;
|
|
color: #555;
|
|
}
|
|
|
|
.input {
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
border-radius: 4px;
|
|
border: 1px solid #ccc;
|
|
outline: none;
|
|
}
|
|
|
|
.button {
|
|
padding: 10px;
|
|
font-size: 16px;
|
|
background-color: #007bff;
|
|
color: #fff;
|
|
border: none;
|
|
border-radius: 4px;
|
|
cursor: pointer;
|
|
transition: background-color 0.3s ease;
|
|
}
|
|
|
|
.button:disabled {
|
|
background-color: #ccc;
|
|
cursor: not-allowed;
|
|
}
|
|
|
|
.error {
|
|
color: red;
|
|
text-align: center;
|
|
margin-top: 10px;
|
|
}
|
|
|
|
.names-container {
|
|
margin-top: 20px;
|
|
}
|
|
|
|
.sub-heading {
|
|
color: #333;
|
|
margin-bottom: 10px;
|
|
}
|
|
|
|
.list {
|
|
list-style: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.list-item {
|
|
padding: 10px;
|
|
background-color: #fff;
|
|
border: 1px solid #ddd;
|
|
border-radius: 4px;
|
|
margin-bottom: 5px;
|
|
font-size: 14px;
|
|
}
|
|
.daily-counts-container {
|
|
margin-top: 20px;
|
|
padding: 15px;
|
|
border-radius: 8px;
|
|
background: #f8f9fa;
|
|
box-shadow: 0px 4px 6px rgba(0, 0, 0, 0.1);
|
|
}
|
|
|
|
.sub-heading {
|
|
font-size: 1.5rem;
|
|
margin-bottom: 10px;
|
|
color: #333;
|
|
}
|
|
|
|
.list {
|
|
list-style-type: none;
|
|
padding: 0;
|
|
}
|
|
|
|
.list-item {
|
|
font-size: 1.1rem;
|
|
padding: 8px 0;
|
|
border-bottom: 1px solid #ddd;
|
|
display: flex;
|
|
justify-content: space-between;
|
|
}
|
|
|
|
.date {
|
|
font-weight: bold;
|
|
color: #007bff;
|
|
}
|
|
|
|
.count {
|
|
color: #555;
|
|
}
|