* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
    -webkit-tap-highlight-color: transparent;
    -webkit-touch-callout: none;
}

body {
    display: flex;
    justify-content: center;
    background-color: #fafafa;
    padding: 20px;
    min-height: 100vh;
    overflow-y: auto;
    font-family: 'Segoe UI', Tahoma, Geneva, Verdana, sans-serif;
    user-select: none;
}

h1 {
    margin-top: 8rem;
    margin-bottom: 1rem;
    background: linear-gradient(45deg, #ff6b6b, #ff8e8e, #ffa8a8);
    background-clip: text;
    color: transparent;
    font-weight: bold;
    text-align: center;
}

.selection-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: auto;
    width: 42rem;
}

.selection-item {
    position: relative;
    transition: transform 0.2s ease, box-shadow 0.2s ease;
    cursor: pointer;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    border-radius: 10px;
    background: white;
    padding: 15px;
    min-height: 128px;
}

.selection-item:hover {
    transform: translateY(-3px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.title {
    margin-bottom: 8px;
    font-weight: bold;
    font-size: 1.2rem;
}

.description {
    color: #555;
    font-size: 1rem;
}

.selection-item #date {
    position: absolute;
    right: 10px;
    bottom: 10px;
    margin: 0;
    color: #777;
}

.spacer {
    margin-bottom: 4rem;
}

.link-actions {
    position: fixed;
    right: 10px;
    bottom: 10px;
    z-index: 1;
    margin: 1rem;
}