﻿/* ==================================================
   ðŸ”§ PROPOKIT UTILITY CLASSES
   ================================================== */

/* Button container styling */
.button-container {
    display: flex;
    justify-content: center;
    margin-top: -80px;
    margin-bottom: 10px;
    width: 100%;
    background: var(--button-bg-color, white);
    z-index: 1000;
    padding: 20px 0;
    border-radius: var(--corner-radius, 0);
    box-shadow: 0 3px 15px rgba(0,0,0,0.08);
    transition: all 0.3s ease;
    border: 1px solid rgba(0,0,0,0.05);
}

/* Button divider */
.button-divider {
    height: 1px;
    background-color: #cccccc;
    margin-top: 30px;
}

/* Hide elements when modal is open */
.hide-on-modal {
    display: none;
}

/* Common utility classes */
.text-center {
    text-align: center;
}

.text-left {
    text-align: left;
}

.text-right {
    text-align: right;
}

.hidden {
    display: none;
}

.visible {
    display: block !important;
}

.no-margin {
    margin: 0 !important;
}

.no-padding {
    padding: 0 !important;
}

.full-width {
    width: 100% !important;
}

.full-height {
    height: 100% !important;
}
