/* style.css */

.agenda-bb-event-list {
    list-style: none;
    padding: 0;
}

.agenda-bb-event-list li {
    margin-bottom: 20px;
    padding: 10px;
    border: 1px solid #ddd;
}

.agenda-bb-event-list li strong {
    display: block;
    margin-bottom: 5px;
}

.delete-event {
    color: red;
    text-decoration: none;
    margin-left: 10px;
}

.icone-link {
    text-decoration: none;
}

.bdn {
	border:none
}

.icone {
    width: 48px; /* Ajustez la taille de votre icône */
    height: 48px;
    background-image: "./pictures/icons8-site-48.png"; /* Couleur de fond de votre icône */
    background-color: #3498db; /* Couleur de fond de votre icône */
    border-radius: 50%;
    /* Vous pouvez ajouter d'autres styles pour personnaliser votre icône */
}

.red {
    color: #E6332A! important;
    text-transform: uppercase! important;
    font-family: "Hammersmith One", sans-serif! important;
    font-weight: 600! important;
}

.tac {
    text-align: center;
}

.tag {
    text-align: left;
}

.upc {
    text-transform: uppercase;
}

.title_agenda {
    font-family: "Hammersmith One", sans-serif;
    font-weight: 600;
}

.roboto {
    font-family: "Roboto", sans-serif;
}

.w40 {
    width: 40%;
}

.w35 {
    width: 35%;
}

.w30 {
    width: 30%;
}

.w25 {
    width: 25%;
}

.w20 {
    width: 20%;
}

.w15 {
    width: 15%;
}

a.button{
    background:url(icons8-site-48.png);
    display:block;
    color:#555555;
    font-weight:bold;
    height:30px;
    line-height:29px;
    margin-bottom:14px;
    text-decoration:none;
    width:30px;
    background-repeat: no-repeat;
}

a:hover.button{
    color:#0066CC;
                            }

/* Formulaire Agenda BB */
.agenda-bb-form-wrapper {
    max-width: 720px;
    margin: 0 0 30px;
}

.agenda-bb-form-title {
    font-family: "Hammersmith One", sans-serif;
    color: #E6332A;
    text-transform: uppercase;
    margin-bottom: 15px;
}

.agenda-bb-form {
    background: #fafafa;
    border: 1px solid #e2e2e2;
    border-radius: 8px;
    padding: 20px 25px;
    font-family: "Roboto", sans-serif;
    box-sizing: border-box;
}

.agenda-bb-fieldset {
    border: none;
    padding: 0;
    margin: 0 0 20px;
    display: grid;
    grid-template-columns: repeat(2, 1fr);
    gap: 15px 20px;
}

.agenda-bb-fieldset legend {
    grid-column: 1 / -1;
    font-weight: 600;
    text-transform: uppercase;
    font-size: 0.85em;
    color: #777;
    letter-spacing: 0.05em;
    margin-bottom: 5px;
    padding: 0;
}

.agenda-bb-field {
    display: flex;
    flex-direction: column;
}

.agenda-bb-field-full {
    grid-column: 1 / -1;
}

.agenda-bb-field label {
    font-weight: 600;
    margin-bottom: 5px;
    font-size: 0.9em;
}

.agenda-bb-required {
    color: #E6332A;
}

.agenda-bb-required-note {
    font-size: 0.8em;
    color: #777;
    margin: -5px 0 15px;
}

.agenda-bb-field input,
.agenda-bb-field select {
    padding: 8px 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    font-size: 1em;
    font-family: inherit;
    box-sizing: border-box;
    width: 100%;
    transition: border-color 0.15s ease, box-shadow 0.15s ease;
}

.agenda-bb-field input:focus,
.agenda-bb-field select:focus {
    border-color: #E6332A;
    box-shadow: 0 0 0 2px rgba(230, 51, 42, 0.15);
    outline: none;
}

.agenda-bb-actions {
    display: flex;
    align-items: center;
    gap: 15px;
}

.agenda-bb-submit {
    background: #E6332A;
    color: #fff;
    border: none;
    border-radius: 4px;
    padding: 10px 22px;
    font-weight: 600;
    text-transform: uppercase;
    letter-spacing: 0.03em;
    cursor: pointer;
    transition: background-color 0.15s ease;
}

.agenda-bb-submit:hover {
    background: #c62a22;
}

.agenda-bb-cancel {
    color: #777;
    text-decoration: underline;
}

.agenda-bb-cancel:hover {
    color: #333;
}

@media (max-width: 600px) {
    .agenda-bb-fieldset {
        grid-template-columns: 1fr;
    }
}

