/**
 * Eltaltashmal CSS - Minimal styles
 * Only for buttons and critical form elements
 */

/* Primary button - Red background, white text */
.eltaltashmal-btn {
    background: #e31e24;
    color: #ffffff;
    border: none;
    padding: 12px 24px;
    border-radius: 4px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    transition: opacity 0.3s, background 0.3s;
}

.eltaltashmal-btn:hover {
    background: #c41a1f;
    opacity: 0.95;
}

.eltaltashmal-btn:disabled {
    opacity: 0.6;
    cursor: not-allowed;
}

/* Status messages */
.eltaltashmal-status.error {
    background: #fee;
    color: #c00;
    border: 1px solid #fcc;
    padding: 10px;
    border-radius: 4px;
}

.eltaltashmal-status.success {
    background: #efe;
    color: #0a0;
    border: 1px solid #cfc;
    padding: 10px;
    border-radius: 4px;
}

/* All other styles come from the WordPress theme */