body {
    font-family: 'Inter', sans-serif;
    background-color: #f0fdf4; /* Light green bg */
}

.paddle-card {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.paddle-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 25px -5px rgba(0, 0, 0, 0.1), 0 10px 10px -5px rgba(0, 0, 0, 0.04);
}

.option-btn {
    transition: all 0.2s ease;
}

.option-btn:hover {
    transform: scale(1.02);
}

.option-btn.selected {
    border-color: #16a34a; /* green-600 */
    background-color: #dcfce7; /* green-100 */
    color: #166534; /* green-800 */
}

/* Smooth fade transition */
.fade-in {
    animation: fadeIn 0.5s ease-in-out;
}

@keyframes fadeIn {
    from { opacity: 0; transform: translateY(10px); }
    to { opacity: 1; transform: translateY(0); }
}

.progress-bar {
    transition: width 0.5s ease-in-out;
}

/* Floating Menu Styles */
.floating-menu {
    position: fixed;
    top: 50%;
    right: 0;
    transform: translateY(-50%);
    z-index: 100;
    display: flex;
    flex-direction: column;
    gap: 0.5rem;
    align-items: flex-end;
}

.floating-item {
    display: flex;
    align-items: center;
    gap: 0.75rem;
    background: white;
    padding: 0.6rem 1rem;
    border-radius: 2rem 0 0 2rem;
    box-shadow: -4px 4px 10px rgba(0, 0, 0, 0.08);
    border: 1px solid #f0fdf4;
    border-right: none;
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
    text-decoration: none;
    color: #475569;
    font-weight: 600;
    font-size: 0.75rem;
    width: 3.5rem; /* Only show icon initially on mobile */
    overflow: hidden;
    white-space: nowrap;
}

.floating-item span {
    opacity: 0;
    transition: opacity 0.2s;
}

.floating-item:hover, .floating-item:active {
    width: auto;
    padding-right: 1.25rem;
    background: #f0fdf4;
    color: #16a34a;
}

.floating-item:hover span, .floating-item:active span {
    opacity: 1;
}

.floating-item i {
    font-size: 1.25rem;
    color: #16a34a;
    min-width: 1.5rem;
    text-align: center;
}

@media (min-width: 768px) {
    .floating-menu {
        display: none; /* Hide floating menu on desktop */
    }
}
