
/* Common Button Design */
.common-astro-btn {
    display: flex;
    align-items: center;
    justify-content: center;
    width: 100%;
    font-family: 'Poppins', sans-serif; /* same everywhere */
    font-size: 15px;
    font-weight: 600; /* bold */
    padding: 8px 12px;
    border-radius: 6px;
    transition: all 0.3s ease;
    border: none;
}

/* Online */
.btn-online {
    background-color: #286851;
    color: #ffffff;
}
/* Offline / Busy */
.btn-offline {
    background-color: #c5c5c5;
    color: #000000;
    pointer-events: none;
}

/* Icon spacing */
.common-astro-btn i {
    margin-right: 8px;
    font-size: 14px;
}

.common-astro-btn:hover {
    text-decoration: none !important;
    
}

.btn-online:hover {
    color: #fff !important;
}

.btn-offline:hover {
    color: #000 !important;
}