/* Base styles and CSS reset */
@font-face {
    font-family: 'Super Water';
    src: url('../public/Super Water.ttf') format('truetype');
    font-weight: normal;
    font-style: normal;
}

* {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

body {
    font-family: -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, 'Helvetica Neue', Arial, sans-serif;
    background: linear-gradient(135deg, #667eea 0%, #764ba2 100%);
    min-height: 100vh;
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 20px;
}

h1 {
    text-align: center;
    color: #333;
    margin-bottom: 30px;
    font-size: 28px;
    font-family: 'Super Water', sans-serif;
}

label {
    display: block;
    margin-bottom: 5px;
    color: #555;
    font-weight: 500;
}

/* Typography */
.setup-title {
    font-size: 24px;
    color: #333;
    margin-bottom: 15px;
}

.setup-subtitle {
    color: #666;
    margin-bottom: 30px;
    line-height: 1.5;
}

.modal-title {
    font-size: 20px;
    color: #333;
    margin-bottom: 10px;
}

.drop-name {
    font-size: 20px;
    font-weight: 700;
    color: #333;
    margin-bottom: 5px;
}

.drop-frequency {
    font-size: 12px;
    color: #888;
    font-weight: 500;
    text-transform: uppercase;
    letter-spacing: 0.5px;
}

.time-since {
    font-size: 24px;
    font-weight: bold;
    color: #667eea;
    margin-bottom: 5px;
}

.never-administered {
    color: #999;
    font-style: italic;
}