﻿body {
}
.btn-strava {
    background-color: #fc5200 !important;
    color: #fff !important;
}

.flower-container {
    position: absolute;
    top: 0;
    left: 0;
    width: auto;
    height: auto;
    pointer-events: none; /* Ngăn không cho các phần tử trong flower-container tương tác với người dùng */
}

.flower {
    position: absolute;
    font-size: 30px;
    animation: fall 10s infinite ease-in;
}

.flower-apricot-blossom {
    position: absolute;
    font-size: 30px;
    color: #FFD700; /* Màu vàng của hoa mai */
    animation: fall 10s infinite ease-in;
}

@keyframes fall {
    0% {
        transform: translateY(-100px) rotate(0deg);
        opacity: 1;
    }

    100% {
        transform: translateY(100vh) rotate(720deg); /* Làm hoa quay tròn trong khi rơi xuống */
        opacity: 0;
    }
}

.marquee {
    width: 100%;
    overflow: hidden;
    white-space: nowrap;
    box-sizing: border-box;
}

.marquee-content {
    /*display: inline-block;*/
    animation: marquee 10s linear infinite;
}

.marquee:hover .marquee-content {
    animation-play-state: paused;
}

@keyframes marquee {
    0% {
        transform: translateX(100%);
    }

    100% {
        transform: translateX(-100%);
    }
}

/* Basic Styles */
.modal-dialog {
    max-width: 500px;
    margin: 30px auto;
}

.modal-content {
    border-radius: 10px;
    padding: 20px;
    background-color: #f8f9fa;
}

.modal-header {
    border-bottom: none;
    text-align: center;
}

.modal-title {
    font-size: 1.5rem;
    font-weight: bold;
    color: #007bff;
}

.close {
    color: #000;
    font-size: 1.5rem;
    opacity: 1;
}

.modal-body {
    padding: 30px;
}

.form-group {
    margin-bottom: 20px;
}

.form-control {
    height: 45px;
    font-size: 1rem;
    border-radius: 5px;
    border: 1px solid #ccc;
}

    .form-control:focus {
        border-color: #007bff;
        box-shadow: 0 0 5px rgba(0, 123, 255, 0.5);
    }

button {
    font-size: 1rem;
}

/* Style buttons in footer */
.modal-footer {
    justify-content: center;
}

/* Button Hover Effects */
.btn-link {
    background: none;
    border: none;
    color: #007bff;
    text-decoration: none;
    font-size: 1rem;
}

    .btn-link:hover {
        text-decoration: underline;
    }

/* Center buttons and spacing */
.d-flex {
    display: flex;
    justify-content: space-between;
}

/* Responsive Design */
@media (max-width: 768px) {
    .modal-dialog {
        max-width: 100%;
        margin: 0;
    }

    .modal-content {
        border-radius: 0;
    }
}