/* Main container for the angel number tool */
#bit186-rml-angel-number-container {
    background: #F5F1E8;
    padding: 30px;
    border-radius: 28px;
    text-align: center;
    max-width: 900px;
    margin: 40px auto;
}

/* Intro and CTA text */
.bit186-rml-intro,
.bit186-rml-cta {
    max-width: 700px;
    margin: 0 auto 25px;
    line-height: 1.6;
}

/* Container for the angel number buttons */
#bit186-rml-angel-number-buttons {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 12px;
    margin: 24px 0;
}

/* Individual angel number buttons */
.bit186-rml-angel-number-button {
    background-color: #1F3D2B;
    color: #ffffff;
    border: 1px solid #C8B283;
    border-radius: 999px;
    padding: 10px 18px;
    font-size: 1rem;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease;
}

/* Button hover effect */
.bit186-rml-angel-number-button:hover {
    background-color: #C8B283;
    color: #1F3D2B;
    transform: translateY(-2px);
}

/* Message box that appears after clicking a number */
#bit186-rml-angel-number-message {
    background: #ffffff;
    border-left: 4px solid #C8B283;
    padding: 20px;
    margin-top: 25px;
    font-size: 1rem;
    line-height: 1.6;
}

/* Responsive layout for small screens */
@media (max-width: 700px) {
    #bit186-rml-angel-number-buttons {
        display: grid;
        grid-template-columns: repeat(2, 1fr);
    }
}