/* General Styles */
body {
    font-family: "Work Sans", sans-serif;
    background-color: #3a54b4;
    margin: 0;
    padding: 0;
    text-align: center;
    color: #494f5d;
}

#m__calc .container * {
    font-family: "Work Sans", sans-serif;
    font-weight: 600;
}


#m__calc .container {
    max-width: 700px;
    margin: 20px auto;
    background-color: #fff;
    border-radius: 10px;
    padding: 20px 20px 30px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}
#m__calc .step {
    display: none;
}

#m__calc h1 {
    color: #c87320;
    font-size: 36px;
    margin: 10px 6px;
}

#m__calc .subheading {
    font-size: 1rem;
    color: #494f5d;
    margin: 0;
    margin-bottom: 20px;
    font-weight: 600;
}

/* Input Group */
#m__calc .input-group {
    margin: 20px 0;
}

#m__calc .input-group label,
#m__calc .mm_title {
    display: block;
    font-size: 26px;
    margin-bottom: 15px;
    color: #494f5d;
    font-weight: 600;
}

#m__calc .input-group input {
    width: 100%;
    padding: 15px 10px;
    font-size: 16px;
    border: 2px solid #334046;
    border-radius: 10px;
    outline: none;
    max-width: 250px;
    text-align: left;
    font-family: inherit;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.1);
}

#m__calc .input-group input:focus {
    border-color: #c97524;
}

/* Option Group */
#m__calc .options {
    display: flex;
    justify-content: center;
    margin: 20px 0;
    gap: 20px;
}

#m__calc .option {
    text-align: center;
    padding: 15px;
    border: 2px solid #ddd;
    border-radius: 10px;
    width: 200px;
    transition: all 0.3s ease;
}

#m__calc .option img {
    width: 100px;
    height: auto;
}

#m__calc .option p {
    font-size: 28px;
    color: #c97522;
    margin: 0;
    font-weight: 600;
}

#m__calc .option:hover {
    border-color: #c97522;
    cursor: pointer;
}

#m__calc .option.selected {
    border-color: #c97522;
    background: rgb(201 117 34 / 5%);
}

/* Button Group */
#m__calc .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 20px;
    margin: 20px 0;
}

#m__calc .btn {
    padding: 10px 20px;
    font-size: 22px;
    color: #c97522;
    background-color: #fff;
    border: 2px solid #dddddd;
    border-radius: 5px;
    cursor: pointer;
    transition: all 0.3s ease;
    font-family: inherit;
    min-width: 200px;
    font-weight: 600;
}

#m__calc .btn.selected,
#m__calc .btn:hover {
    border: 2px solid #c97522;
    background: rgb(201 117 34 / 5%);
}

/* Navigation Buttons */
#m__calc .navigation {
    margin-top: 30px;
    display: flex;
    justify-content: center;
    gap: 15px;
}

#m__calc .nav-btn {
    background-color: #334046;
    font-family: inherit;
    color: #fff;
    border: none;
    padding: 12px 20px;
    border-radius: 12px;
    font-size: 16px;
    cursor: pointer;
    transition: all 0.3s ease;
    min-width: 140px;
    text-decoration: none;
    display: flex;
    align-items: center;
    justify-content: center;
    font-weight: 600;
}

#m__calc .nav-btn.back {
    background-color: #dfdfdf;
    color: #525252;
    min-width: 60px;
}

#m__calc .nav-btn:hover {
    opacity: 0.8;
}

#m__calc .m_alert {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    z-index: 9999;
    padding: 15px;
    display: none;
    align-items: center;
    justify-content: start;
    text-align: left;
    gap: 12px;
    border-radius: 16px;
    border: 1px solid;
    color: #882525;
    width: 100%;
    max-width: 350px;
    border-color: #ff3c5f;
    background-color: #fff5f7;
}

#m__calc .m_alert.mfixed {
    display: flex;
}

#m__calc .m_alert svg {
    display: block;
    vertical-align: middle;
}

#m__calc #animal_selected {
    max-width: 180px;
    width: 100%;
}

#m__calc .m_h_title {
    font-size: 22px;
    color: #494f5d;
    margin: 0;
    margin-bottom: 10px;
}

#m__calc .m_h_desc {
    font-size: 17px;
    color: #494f5d;
    margin: 0;
    margin-bottom: 10px;
}

#m__calc .m_h_title strong,
#m__calc .m_h_desc strong {
    color: #c87320;
    font-weight: 700;
}



@media all and (max-width:700px) {

#m__calc .container {
    margin: 20px 10px;
}
#m__calc .subheading {
font-size: 15px;
}
#m__calc .input-group label, #m__calc .mm_title {
    display: block;
    font-size: 23px;
    margin-bottom: 8px;
}
#m__calc .options {
    display: flex;
    justify-content: center;
    margin: 10px 0 20px;
    gap: 7px;
}
#m__calc .btn-group {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    gap: 8px;
    margin: 10px 0 20px;
}
#m__calc .btn {
    padding: 10px 10px;
    font-size: 19px;
    min-width: auto;
    width: 42%;
}

#m__calc .m_alert{
        max-width: none;
        width: 78%;
}
}