/* Contenedor General */
.cs-container {
    max-width: 600px;
    margin: 0 auto;
    padding: 20px;
    background: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 10px rgba(0,0,0,0.1);
    font-family: Arial, sans-serif;
}

/* Formularios */
.cs-form .cs-field {
    margin-bottom: 15px;
}

.cs-form label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
    color: #333;
}

.cs-form input[type="text"],
.cs-form input[type="email"] {
    width: 100%;
    padding: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.cs-readonly {
    background-color: #e9ecef;
    cursor: not-allowed;
    color: #666;
}

/* Botones */
.cs-btn {
    background-color: #0073aa;
    color: white;
    border: none;
    padding: 12px 20px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    width: 100%;
    transition: background 0.3s;
}

.cs-btn:hover {
    background-color: #005177;
}

.cs-btn-secondary {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 15px;
    border-radius: 4px;
    cursor: pointer;
    margin-top: 10px;
}

/* Mensajes */
.cs-message {
    padding: 10px;
    margin-bottom: 20px;
    border-radius: 4px;
}

.cs-message.success {
    background-color: #d4edda;
    color: #155724;
    border: 1px solid #c3e6cb;
}

.cs-message.error {
    background-color: #f8d7da;
    color: #721c24;
    border: 1px solid #f5c6cb;
}

/* Resultados */
.cs-winner-box {
    text-align: center;
    background: #fff3cd;
    padding: 20px;
    border: 2px solid #ffeeba;
    border-radius: 8px;
}

.cs-consolation-box {
    text-align: center;
    background: #d1ecf1;
    padding: 20px;
    border: 2px solid #bee5eb;
    border-radius: 8px;
}

.cs-referral-section {
    margin-top: 30px;
    padding-top: 20px;
    border-top: 1px dashed #ccc;
}

.success-text {
    color: green;
    font-weight: bold;
}