/* --- Lishan Events Manager - Styles Frontend --- */

.lishan-registration-wrapper {
    background: #ffffff;
    border: 1px solid #e2e8f0;
    border-radius: 8px;
    padding: 30px;
    box-shadow: 0 4px 6px -1px rgba(0, 0, 0, 0.05);
    margin: 40px 0;
    font-family: inherit;
}

.lishan-registration-wrapper h3 {
    margin-top: 0;
    margin-bottom: 20px;
    font-size: 1.5em;
    color: #1e293b;
    border-bottom: 2px solid #f1f5f9;
    padding-bottom: 10px;
}

.lishan-alert-success {
    background-color: #dcfce7;
    color: #166534;
    padding: 15px;
    border-radius: 6px;
    margin-bottom: 20px;
    font-weight: 600;
    border: 1px solid #bbf7d0;
}

.lishan-form-group {
    display: flex;
    gap: 20px;
    margin-bottom: 20px;
}

.lishan-form-group input {
    flex: 1;
    padding: 14px 16px;
    border: 1px solid #cbd5e1;
    border-radius: 6px;
    font-size: 15px;
    color: #334155;
    background-color: #f8fafc;
    transition: all 0.3s ease;
    width: 100%;
    box-sizing: border-box;
}

.lishan-form-group input:focus {
    border-color: #3b82f6;
    background-color: #ffffff;
    outline: none;
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.lishan-btn {
    background-color: #0f172a;
    color: #ffffff;
    padding: 14px 28px;
    border: none;
    border-radius: 6px;
    cursor: pointer;
    font-weight: 600;
    font-size: 16px;
    transition: background-color 0.2s ease, transform 0.1s ease;
}

.lishan-btn:hover {
    background-color: #1e293b;
}

.lishan-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}
.lishan-table th, .lishan-table td {
    border: 1px solid #e2e8f0;
    padding: 12px;
    text-align: left;
}
.lishan-table th {
    background-color: #f1f5f9;
    font-weight: 600;
    color: #334155;
}
.lishan-table tr:nth-child(even) {
    background-color: #f8fafc;
}

@media (max-width: 768px) {
    .lishan-form-group {
        flex-direction: column;
        gap: 15px;
    }
    .lishan-btn {
        width: 100%;
    }
}

/* --- Lishan Events Manager - Styles v3.1 --- */

.lishan-btn-row {
    margin-top: 10px;
}

.lishan-btn-action {
    border: none;
    padding: 8px 16px;
    border-radius: 5px;
    font-size: 13px;
    font-weight: 600;
    cursor: pointer;
    transition: all 0.2s ease-in-out;
    box-shadow: 0 2px 4px rgba(0,0,0,0.1);
    display: flex;
    align-items: center;
    gap: 6px;
}

.lishan-btn-action:active {
    transform: translateY(1px);
    box-shadow: 0 1px 2px rgba(0,0,0,0.1);
}

/* Couleurs spécifiques */
.lishan-btn-gmail { background-color: #ffffff; color: #3c4043; border: 1px solid #dadce0; }
.lishan-btn-gmail:hover { background-color: #f1f3f4; }

.lishan-btn-httpsms { background-color: #1a73e8; color: #ffffff; }
.lishan-btn-httpsms:hover { background-color: #1765cc; }

.lishan-btn-airdroid { background-color: #34a853; color: #ffffff; }
.lishan-btn-airdroid:hover { background-color: #2d9248; }

.lishan-btn-pdf { background-color: #ea4335; color: #ffffff; }
.lishan-btn-pdf:hover { background-color: #d33c2f; }

/* Tableau */
.lishan-table-data th {
    background-color: #f1f5f9;
    font-weight: bold;
    padding: 10px;
}

.lishan-table-data td {
    padding: 10px;
    border-bottom: 1px solid #e2e8f0;
}