/* Full wrapper for centering */
.call-button-wrapper {
    display: flex;
    justify-content: center; /* center horizontally */
    width: 100%;
    margin: 40px 0;
}

/* Call button styling */
.call-button {
    background-color: #333;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 15px;
    display: flex;
    align-items: center;
    justify-content: center;
    gap: 5px; /* ensures space between icon and text */
    cursor: pointer;
    transition: background-color 0.3s;
    min-width: 120px; /* ensures timer fits inside */
    white-space: nowrap; /* prevent text wrap */
}

/* Hover effect */
.call-button:hover {
    background-color: #555;
}

/* Icon styling */
.call-icon {
    font-size: 18px;
}

/* Timer / text styling */
.call-button span:nth-child(2) {
    font-size: 14px;
    display: inline-block;
}

/* Mobile adjustments */
@media (max-width: 480px) {
    .call-button {
        padding: 8px 12px;
        min-width: 90px;
    }
    .call-icon {
        font-size: 16px;
    }
    .call-button span:nth-child(2) {
        font-size: 12px;
    }
}