@import url("https://fonts.googleapis.com/css2?family=Poppins:wght@100;200;300;400;500&display=swap");

:root {
    --bg: #363fff;
    --bg2: #3138c6;
    --title: #293245;
    --secondary-light: rgb(34, 124, 112, 0.2);
    --secondary-light-2: rgb(127, 183, 126, 0.1);
    --white: #fff;
    --black: #393e46;
    --green: #00FF96;
    --blue: #00A2FF;

    --shadow: 0px 2px 8px 0px var(--secondary-light);
}

*{
    font-family: "Poppins", sans-serif;
    margin: 0;
    padding: 0;
    box-sizing: border-box;
}

/* navbar */
nav{
    background-color: #124559;
}

/* dessal Section */
section.oasis {
    display: flex;
    padding: 300px 10% 50px 10%;
    /* background: linear-gradient(180deg, #124559, #16184f); */
    color: black;
    gap: 60px;
    flex-direction: column;
}

section.oasis h3{
    text-align: center;
    font-size: 40px;
}

section.oasis .top{
    display: flex;
    flex-direction: column;
    justify-content: center;
    gap: 60px;
}

section.oasis .top img{
    width: 40%;
    margin: auto;
}

section.oasis .top p.description{
    padding: 0 15px;
    font-size: 20px;
    text-align: left;
}

/* menu deroulant info */
section.oasis .item-deroulant {
    background-color: white;
    margin-bottom: 10px;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    overflow: hidden;
}

section.oasis .name {
    padding: 15px 20px;
    background-color: #007bff;
    color: white;
    cursor: pointer;
    user-select: none;
    display: flex;
    justify-content: space-between;
    align-items: center;
    font-size: 18px;
}

section.oasis .name:hover {
    background-color: #0056b3;
}

section.oasis .details {
    padding: 15px 20px;
    display: none;
    background-color: #f1f1f1;
    border-top: 1px solid #ddd;
}

section.oasis .array{
    overflow-x: auto;
}

section.oasis .name::after {
    content: '▼';
    transition: transform 0.3s ease;
}

section.oasis .name.open::after {
    transform: rotate(180deg);
}

/* tableau */
table {
    width: 100%;
    border-collapse: collapse;
}
th, td {
    border: 1px solid black;
    padding: 8px;
    text-align: center;
}
th {
    background-color: #ddd;
}