.miramo-payment-form-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 0 20px rgba(0,0,0,0.1);
}

.miramo-payment-form .form-row {
    margin-bottom: 20px;
}

.miramo-payment-form .form-group {
    width: 100%;
}

.miramo-payment-form label {
    display: block;
    margin-bottom: 8px;
    font-weight: 600;
    color: #333;
}

.miramo-payment-form input,
.miramo-payment-form select {
    width: 100%;
    padding: 12px;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    font-size: 16px;
    transition: border-color 0.3s ease;
}

.miramo-payment-form input:focus,
.miramo-payment-form select:focus {
    outline: none;
    border-color: #007cba;
    box-shadow: 0 0 0 3px rgba(0, 124, 186, 0.1);
}

.phone-input-container {
    display: flex;
    gap: 10px;
}

.phone-input-container select {
    flex: 0 0 120px;
}

.phone-input-container input {
    flex: 1;
}

.amount-input-container {
    display: flex;
    align-items: center;
    border: 2px solid #e1e5e9;
    border-radius: 6px;
    overflow: hidden;
}

.amount-input-container span {
    padding: 12px 15px;
    background: #f8f9fa;
    font-weight: 600;
    color: #495057;
    border-right: 1px solid #e1e5e9;
}

.amount-input-container input {
    border: none;
    margin: 0;
}

.required {
    color: #e74c3c;
}

.miramo-payment-btn {
    width: 100%;
    background: linear-gradient(135deg, #c429a5, #47143d);
    color: white;
    padding: 15px 20px;
    font-size: 18px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.3s ease;
}

.miramo-payment-btn:hover {
    background: linear-gradient(135deg, #47143d, #47143d);
    transform: translateY(-2px);
    box-shadow: 0 5px 15px rgba(0, 124, 186, 0.3);
}

/* Success/Failure Page Styles */
.miramo-result-page {
    max-width: 600px;
    margin: 50px auto;
    padding: 40px;
    background: #fff;
    border-radius: 15px;
    box-shadow: 0 0 30px rgba(0,0,0,0.1);
    text-align: center;
}

.miramo-success-icon {
    font-size: 60px;
    color: #28a745;
    margin-bottom: 20px;
}

.miramo-failure-icon {
    font-size: 60px;
    color: #dc3545;
    margin-bottom: 20px;
}

.miramo-result-title {
    font-size: 28px;
    margin-bottom: 20px;
    font-weight: 700;
}

.miramo-success-title {
    color: #28a745;
}

.miramo-failure-title {
    color: #dc3545;
}

.miramo-transaction-details {
    background: #f8f9fa;
    padding: 25px;
    border-radius: 10px;
    margin: 25px 0;
    text-align: left;
}

.detail-item {
    display: flex;
    justify-content: space-between;
    margin-bottom: 12px;
    padding-bottom: 8px;
    border-bottom: 1px solid #e9ecef;
}

.detail-label {
    font-weight: 600;
    color: #495057;
}

.detail-value {
    color: #6c757d;
    font-weight: 500;
}

.miramo-action-buttons {
    margin-top: 30px;
}

.miramo-btn {
    display: inline-block;
    padding: 12px 25px;
    margin: 0 10px;
    text-decoration: none;
    border-radius: 8px;
    font-weight: 600;
    transition: all 0.3s ease;
    border: none;
    cursor: pointer;
    font-size: 16px;
}

.miramo-btn-primary {
    background: #47143d;
    color: white;
}

.miramo-btn-primary:hover {
    background: #47143d;
    color: white;
}

.miramo-btn-secondary {
    background: #6c757d;
    color: white;
}

.miramo-btn-secondary:hover {
    background: #545b62;
    color: white;
}

/* Admin Styles */
.miramo-admin-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

.miramo-admin-table th,
.miramo-admin-table td {
    padding: 12px;
    text-align: left;
    border-bottom: 1px solid #ddd;
}

.miramo-admin-table th {
    background-color: #f8f9fa;
    font-weight: 600;
}

.status-success {
    color: #28a745;
    font-weight: 600;
}

.status-failed {
    color: #dc3545;
    font-weight: 600;
}

.status-pending {
    color: #ffc107;
    font-weight: 600;
}

@media (max-width: 768px) {
    .miramo-payment-form-container,
    .miramo-result-page {
        margin: 20px;
        padding: 20px;
    }
    
    .phone-input-container {
        flex-direction: column;
    }
    
    .phone-input-container select {
        flex: 1;
    }
    
    .miramo-btn {
        display: block;
        width: 100%;
        margin: 10px 0;
    }
}

/* Currency Buttons Styles - UPDATED */
.currency-buttons-container {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 10px;
    margin-top: 10px;
}

.currency-btn {
    display: flex;
    align-items: center;
    padding: 15px;
    border: 2px solid #e1e5e9;
    border-radius: 8px;
    background-color: transparent;
    cursor: pointer;
    transition: all 0.3s ease;
    text-align: left;
    font-size: 14px;
}

.currency-btn:hover {
    border-color: #47143d;
    background-color: #47143d;
    transform: translateY(-2px);
    box-shadow: 0 4px 8px rgba(71, 20, 61, 0.15);
}

.currency-btn:hover .currency-code,
.currency-btn:hover .currency-name {
    color: white;
}

.currency-btn.selected {
    border-color: #47143d;
    background-color: #47143d;
    box-shadow: 0 0 0 3px rgba(71, 20, 61, 0.1);
}

.currency-btn.selected .currency-code,
.currency-btn.selected .currency-name {
    color: white;
}

.currency-flag {
    font-size: 24px;
    margin-right: 12px;
}

.currency-code {
    font-weight: 600;
    color: #555;
    margin-right: 8px;
    min-width: 40px;
    transition: color 0.3s ease;
}

.currency-name {
    color: #777;
    font-size: 12px;
    transition: color 0.3s ease;
}

@media (max-width: 768px) {
    .currency-buttons-container {
        grid-template-columns: 1fr;
    }
    
    .currency-btn {
        padding: 12px;
    }
}

.error-highlight {
    border: 2px solid #dc3545 !important;
    background-color: #fff5f5 !important;
    animation: shake 0.5s ease-in-out;
}

@keyframes shake {
    0%, 100% { transform: translateX(0); }
    25% { transform: translateX(-5px); }
    75% { transform: translateX(5px); }
}

