.creneau-container {
    display: flex;
    justify-content: center;
    width: 100%;
}

.container-inner {
    margin: 20px auto;
    padding: 20px;
    background-color: #ffffff;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}


.type-group {
    display: flex;
    flex-direction: column;
    justify-content: center;
    text-align: center;
}

.centered {
    display: flex;
    justify-content: center;
}


.day-group {
    margin-right: 20px;
}

.creneau-slot {
    margin: 5px;
    padding: 10px;
    border: 1px solid #ccc;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    background-color: #fff;
    width: 200px;
    border-radius: 15px;
}

.creneau-slot-full {
    text-decoration: line-through;
    color: #888888;
    opacity: 0.6;
    cursor: not-allowed;
    border: 1px solid #ccc;
    text-align: center;
    background-color: #fff;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    border-radius: 15px;
    width: 200px;
    padding: 10px;
    margin: 5px;
}

.creneau-slot-full.creneau-slot-selected {
    background: rgb(72, 72, 247);
    color: #fff;
    text-decoration: none;
}

.date-box {
    padding: 7px;
    margin: 10px 0;
    background-color: #ff8c00;
    border-radius: 10px;
    font-weight: bold;
    font-size: 16px;
    color: white;
    width: 220px;
    text-align: center;
}

.day-group {
    display: flex;
    flex-direction: column;
    align-items: center;
    width: auto;
    margin: 10px;
}

.type-style {
    display: block;
    font-size: 0.83em;
    font-weight: bold;
    unicode-bidi: isolate;
}

.submit-button-container {
    display: flex;
    justify-content: space-between;
    margin-top: 2rem;
}

.modal {
    display: none;
    /* Hidden by default */
    position: fixed;
    /* Stay in place */
    z-index: 1;
    /* Sit on top */
    left: 0;
    top: 0;
    width: 100%;
    /* Full width */
    height: 100%;
    /* Full height */
    overflow: auto;
    /* Enable scroll if needed */
    background-color: rgb(0, 0, 0);
    /* Fallback color */
    background-color: rgba(0, 0, 0, 0.4);
    /* Black w/ opacity */
}

.modal-content {
    background-color: #fefefe;
    margin: 15% auto;
    /* 15% from the top and centered */
    padding: 20px;
    border: 1px solid #888;
    width: 40%;
    /* Could be more or less, depending on screen size */
    text-align: center;
}

.close {
    color: #aaa;
    float: right;
    font-size: 28px;
    font-weight: bold;
}

.close:hover,
.close:focus {
    color: black;
    text-decoration: none;
    cursor: pointer;
}

.card-recup-container {
    display: flex;
    text-align: center;
    flex-wrap: wrap;

}

.card-recup {
    flex: 0 1 48%;
    /* Each card can grow to fill space, but start at 300px */
    margin: 10px;
    /* Margin around each card */
    background-color: #fff;
    /* White background */
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    /* Subtle shadow for depth */
    padding: 15px;
    /* Padding inside the card */
    border-radius: 8px;
    /* Rounded corners */
    display: flex;
    /* Makes the card a flex container */
    flex-direction: column;
    /* Stacks flex items vertically */
}

/* Styles for card contents */
.card-recup h4 {
    color: #333;
    /* Dark gray color for the text */
    margin-bottom: 10px;
    /* Space below the header */
}

.card-recup p,
.card-recup li {
    color: #666;
    /* Lighter text color for less emphasis */
    font-size: 0.9em;
    /* Smaller font size for details */
    line-height: 1.4;
    /* More line-height for readability */
}

.card-recup ul {
    list-style: none;
    /* No bullets for the list */
    padding: 0;
    /* Remove padding */
    margin-top: 10px;
    /* Space above the list */
}

.card-recup li::before {
    content: '• ';
    /* Adds a bullet before each item */
    color: #5C9210;
    /* Color for the bullet */
    font-weight: bold;
    /* Makes the bullet bold */
}

.end {
    display: flex;
    justify-content: end;
}

.space-betw {
    display: flex;
    justify-content: space-between;
}

.card-recup.user-own-order {
    background-color: #f0f0f0;
    /* Light grey background for the user's own order */
    border-left: 5px solid orange;
    /* Green left border as a highlight */
    padding: 10px;
    /* Optional: adds padding inside the card */
    margin-bottom: 20px;
    /* Optional: adds space below the card */
}

@keyframes blink {

    0%,
    100% {
        background-color: rgba(0, 0, 0, 0);
        /* Assuming original color is transparent */
    }

    50% {
        background-color: rgba(0, 255, 0, 0.5);
        /* Lighter semi-transparent green */
    }
}

.blinking {
    animation: blink 5s linear infinite;
}

.space-betw {
    display: flex;
    justify-content: space-between;
}

#confirmNo {
    background-color: #f44336;
    /* Red */
    color: white;
    bottom: 10px;
    /* Position from bottom */
    padding: 10px;
    font-size: 1rem;
    border-radius: 15px;
    cursor: pointer;

}

#confirmYes {
    background-color: #4CAF50;
    /* Green */
    bottom: 10px;
    /* Position from bottom */
    padding: 10px;
    font-size: 1rem;
    border-radius: 15px;
    cursor: pointer;
}
.campaignSelect{
    display: none;
}

.nav a {
    display: inline-block;
    width: 49%;
}

.nav {
    text-align: center;
}

.button-full {
    display: flex;
    width: 100%;
    align-items: center;
    justify-content: center;
    padding: 0.5em 1em 0.55em;
    text-decoration: none;
    color: #fff;
    background: var(--contrast-green);
    border: 0;
    outline: 0;
    border-radius: 120px;
    cursor: pointer;
}