#ultimate-order-button-container {
    position: fixed;
    bottom: 20px;
    right: 20px;
    z-index: 999;
}

#ultimate-order-btn {
    padding: 15px 25px;
    background-color: #83b735;
    color: white;
    border: none;
    border-radius: 4px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    box-shadow: 0 2px 10px rgba(0,0,0,0.2);
    transition: all 0.3s;
}

#ultimate-order-btn:hover {
    background-color: #6f9e2e;
    transform: translateY(-2px);
}

#ultimate-order-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    z-index: 9999;
	overflow: auto;
}

.ultimate-modal-overlay {
    position: absolute;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.9);
}

.ultimate-modal-content {
    position: relative;
    max-width: 500px;
    margin: 50px auto;
    padding: 30px;  
    border-radius: 5px;
    z-index: 10000;
	max-height: 80vh; 
    overflow-y: auto; 
}

.ultimate-modal-content::-webkit-scrollbar {
    width: 8px;
}

.ultimate-modal-content::-webkit-scrollbar-track {
    background: #f1f1f1;
    border-radius: 4px;
}

.ultimate-modal-content::-webkit-scrollbar-thumb {
    background: #888;
    border-radius: 4px;
}

.ultimate-modal-content::-webkit-scrollbar-thumb:hover {
    background: #555;
}

.ultimate-close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    font-size: 24px;
    cursor: pointer;
}

.form-row {
    margin-bottom: 20px;
}

.form-row label {
    display: block;
    margin-bottom: 5px;
    font-weight: 600;
}

.form-row input {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
}

.ultimate-submit-btn {
    width: 100%;
    padding: 12px !important;
    background-color: green !important;
    color: white !important;
    border: none;
    border-radius: 4px !important;
    font-size: 16px !important;
    cursor: pointer !important;
}

#ultimate-order-response {
    margin-top: 15px;
    padding: 10px;
    border-radius: 4px;
    display: none;
}

.success {
    background-color: #d4edda;
    color: #155724;
}

.error {
    background-color: #f8d7da;
    color: #721c24;
}