/* Estilos generales */
.mc-panel-usuario, .mc-tickets, .mc-ticket-admin {
    font-family: Arial, sans-serif;
    max-width: 1000px;
    margin: 20px auto;
    padding: 20px;
    background: #f9f9f9;
    border: 1px solid #ddd;
    border-radius: 5px;
}

/* Estilos para tablas */
.mc-estadisticas, .mc-saldos, .mc-historial-pagos, .mc-historial-referencias {
    width: 100%;
    border-collapse: collapse;
    margin: 20px 0;
    font-family: Arial, sans-serif;
}

.mc-estadisticas th, .mc-saldos th, .mc-historial-pagos th, .mc-historial-referencias th {
    background: #f4f4f4;
    padding: 10px;
    text-align: left;
    border-bottom: 2px solid #ddd;
}

.mc-estadisticas td, .mc-saldos td, .mc-historial-pagos td, .mc-historial-referencias td {
    padding: 10px;
    border-bottom: 1px solid #ddd;
}

/* Colores para filas de estadísticas */
.mc-visitas {
    background: #e6f3ff; /* Azul claro */
}

.mc-palabras {
    background: #e6ffe6; /* Verde claro */
}

.mc-publicaciones {
    background: #fff3e6; /* Naranja claro */
}

.mc-bonos {
    background: #f3e6ff; /* Morado claro */
}

.mc-referencias {
    background: #ffe6e6; /* Rojo claro */
}

.mc-total {
    background: #f0f0f0; /* Gris claro para total */
    font-weight: bold;
}

/* Colores para saldos */
.mc-disponible {
    background: #d9e6ff; /* Azul */
}

.mc-pendiente {
    background: #ffd9d9; /* Rojo */
}

.mc-pagado {
    background: #d9ffd9; /* Verde */
}

.mc-ultimo-retiro {
    background: #e6d9ff; /* Morado */
}

/* Estilos para formularios */
.mc-panel-usuario form, .mc-tickets form, .mc-ticket-admin form {
    margin: 20px 0;
}

.mc-panel-usuario label, .mc-tickets label, .mc-ticket-admin label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.mc-panel-usuario input[type="text"], 
.mc-panel-usuario input[type="email"], 
.mc-panel-usuario textarea,
.mc-tickets input[type="text"], 
.mc-tickets textarea {
    width: 100%;
    padding: 8px;
    margin-bottom: 10px;
    border: 1px solid #ddd;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

.mc-panel-usuario button, .mc-tickets button, .mc-ticket-admin button {
    background: #0073aa;
    color: #fff;
    padding: 10px 15px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-family: Arial, sans-serif;
}

.mc-panel-usuario button:hover, .mc-tickets button:hover, .mc-ticket-admin button:hover {
    background: #005177;
}

/* Estilos para tickets */
.mc-ticket, .mc-ticket-admin {
    border: 1px solid #ddd;
    padding: 15px;
    margin-bottom: 15px;
    border-radius: 5px;
}

.mc-ticket h4, .mc-ticket-admin h4 {
    cursor: default; /* Cambiado para evitar confusión */
    margin: 0;
    padding: 10px;
    background: #f4f4f4;
    border-radius: 5px;
    font-family: Arial, sans-serif;
}

.mc-mensajes-ticket {
    list-style: none;
    padding: 0;
    margin: 10px 0;
}

.mc-mensajes-ticket li {
    padding: 10px;
    border-bottom: 1px solid #eee;
    font-family: Arial, sans-serif;
}

/* Estilos para mensajes de error y éxito */
.mc-error, #mc-pago-mensaje, #mc-ticket-mensaje {
    margin: 10px 0;
    padding: 10px;
    border-radius: 4px;
    font-family: Arial, sans-serif;
}

.mc-error {
    background: #ffe6e6;
    color: #d63638;
}

#mc-pago-mensaje span, #mc-ticket-mensaje span {
    display: block;
}