/*
Theme name: My Custom Theme
Author: Cardinator
Version: 1.0
*/

/* Page breathing room */
.anniversary-card {
    max-width: 900px;
    margin: 60px auto;
    padding: 30px;
    background: #ffffff;
    border-radius: 16px;
    box-shadow: 0 10px 30px rgba(0,0,0,0.08);
}

/* Table */
.anniversary-table table {
    width: 100%;
    border-collapse: collapse;
    font-family: system-ui, -apple-system, sans-serif;
    font-size: 18px;
}

/* Header */
.anniversary-table th {
    text-align: left;
    padding: 15px;
    background: #f5f7fa;
    color: #333;
    font-weight: 600;
}

/* Cells */
.anniversary-table td {
    padding: 18px 15px;
    border-bottom: 1px solid #e8e8e8;
}

/* Hover effect */
.anniversary-table tbody tr:hover {
    background: #f2f0f0;
}

/* Special anniversaries */
.milestone-big {
    font-size: 1.7em;
    font-weight: 900;
    color: #d63031;
}
.milestone-small {
    font-size: 1.3em;
    font-weight: 600;
    color: #e6b400;
}