html, body {
    font-family: 'Roboto', 'Helvetica Neue', Helvetica, Arial, sans-serif;
    margin: 0;
    padding: 0;
}

body {
    background-color: #fafafa;
}

a {
    color: #1976d2;
    text-decoration: none;
}

a:hover {
    color: #1565c0;
    text-decoration: underline;
}

.mud-nav-link {
    padding: 8px 16px;
    margin: 4px 0;
    border-radius: 4px;
}

.mud-nav-link:hover {
    background-color: rgba(25, 118, 210, 0.08);
}

.mud-drawer {
    border-right: 1px solid #e0e0e0;
}

.mud-app-bar {
    box-shadow: 0px 2px 4px rgba(0, 0, 0, 0.1);
}

.mud-container {
    padding: 16px;
}

.mud-paper {
    border-radius: 4px;
}

/* Typography */
.mud-typography {
    letter-spacing: 0.25px;
}

h1, h2, h3, h4, h5, h6 {
    font-weight: 500;
}

/* Forms */
.mud-input-base input,
.mud-select {
    background-color: white;
}

/* Buttons */
.mud-button {
    text-transform: uppercase;
    font-weight: 500;
    letter-spacing: 0.5px;
}

/* Error handling */
.mud-alert-error {
    background-color: #ffebee;
    color: #c62828;
    border-left: 4px solid #c62828;
}

/* Loading states */
.mud-progress-circular {
    margin: 8px;
}

