.dashboard-section {
background-color: #f8f8f8;
border: 1px solid #ddd;
border-radius: 4px;
padding: 20px;
margin-bottom: 20px;
box-shadow: 0 1px 3px rgba(0,0,0,0.1);
}
.dashboard-section h3 {
margin-top: 0;
color: #333;
border-bottom: 1px solid #eee;
padding-bottom: 10px;
margin-bottom: 15px;
}
.dashboard-section .button {
display: inline-block;
background-color: #0073aa;
color: white;
padding: 8px 15px;
text-decoration: none;
border-radius: 3px;
font-weight: 500;
transition: background-color 0.3s;
}
.dashboard-section .button:hover {
background-color: #005177;
}