/* Base styling for body and general elements */
@font-face {
    font-family: 'LuxeUno';
    src: url('/LuxeUno-Regular.otf') format('opentype');
    font-weight: normal;
    font-style: normal;
}

body {
    font-family: 'LuxeUno', system-ui, -apple-system, BlinkMacSystemFont, 'Segoe UI', Roboto, Oxygen, Ubuntu, Cantarell, 'Open Sans', 'Helvetica Neue', sans-serif;
    background: linear-gradient(135deg, #f5f7fa 0%, #c3cfe2 100%);
    color: #333;
    display: flex;
    flex-direction: column;
    align-items: center;
    min-height: 100vh;
    margin: 0;
    padding-top: 2rem;
    padding-bottom: 2rem;
}

h1 {
    color: #2c3e50;
    margin-bottom: 2.5rem;
    font-size: 2.5rem;
    font-weight: 600;
    text-shadow: 1px 1px 2px rgba(0,0,0,0.05);
    letter-spacing: -0.5px;
}

body.modal-open {
    overflow: hidden;
}

.update-log-button, .suggestions-button {
    position: fixed;
    top: 20px;
    padding: 8px 16px;
    border-radius: 20px;
    font-weight: 500;
    cursor: pointer;
    z-index: 100;
    box-shadow: 0 2px 5px rgba(0,0,0,0.2);
    transition: all 0.2s ease;
    font-family: 'LuxeUno', sans-serif;
}

.update-log-button {
    left: 20px;
    background-color: #2196f3;
    color: white;
}

.suggestions-button {
    left: 160px;
    background-color: #4caf50;
    color: white;
}

.update-log-button:hover, .suggestions-button:hover {
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
}

.update-log-button:hover {
    background-color: #1976d2;
}

.suggestions-button:hover {
    background-color: #388e3c;
}

.update-log-button:active, .suggestions-button:active {
    transform: translateY(0);
}

.update-log-content {
    max-width: 700px !important;
}

.update-log-entries {
    max-height: 60vh;
    overflow-y: auto;
    padding-right: 10px;
}

.update-entry {
    margin-bottom: 25px;
    border-bottom: 1px solid #eee;
    padding-bottom: 15px;
}

.update-entry:last-child {
    border-bottom: none;
}

.update-date {
    font-weight: bold;
    color: #1976d2;
    margin-bottom: 8px;
}

.update-items {
    margin-left: 15px;
}

.update-items li {
    margin-bottom: 5px;
}

.item-counter {
    text-align: center;
    margin: 20px 0 30px;
    font-size: 1.2rem;
    color: #2c3e50;
    background-color: rgba(255, 255, 255, 0.7);
    padding: 8px 16px;
    border-radius: 8px;
    display: inline-block;
}