.number-selected {
    background-color: #65DB65;
    color: white;
}

.button-failed {
    background-color: red;
    color: white;
}
@keyframes rotate {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

.rotating {
    animation: rotate 2s linear infinite;
}

.introduction-card span {
    color: green;
}

.introduction-card {
    display: flex;
    flex-direction: column;
    align-items: center;
    text-align: left;
    width: 100%;
    margin: 0;
}

.introduction-card p {
    width: 300px;
    margin-bottom: 0;
}

.introduction-card span {
    margin-right: 10px;
    color: green;
}

#weekly-price-label text,
#monthly-price-label text, 
#annually-price-label text {
    font-size: 40px;
}
#weekly-price-label b:first-of-type,
#monthly-price-label b:first-of-type, 
#annually-price-label b:first-of-type {
    font-size: 60px;
}

/* Styles for mobile screens */
@media (max-width: 767px) {
    .title-text {
        font-size: 1.5rem;
    }
    #month-and-annual {
        padding-left: 0.5rem !important;
        padding-right: 0.5rem !important;
    }
    #month-and-annual h1 {
        font-size: 1.75rem;
    }
    #month-and-annual .plan-card {
        padding: 0.5rem !important;
    }
    .best-text {
        font-size: 12px;
    }
    #weekly-price-label text, 
    #monthly-price-label text, 
    #annually-price-label text {
        font-size: 20px;
    }
    #weekly-price-label b:first-of-type, 
    #monthly-price-label b:first-of-type, 
    #annually-price-label b:first-of-type {
        font-size: 40px;
    }
    .annual-title {
        margin-top: 1.75rem !important;
    }
}

