/* Style de base pour le body */
body {
    display: flex;
    flex-wrap: wrap;
    justify-content: center;
    align-items: center;
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background-color: #f0f0f0;
}

/* Style pour chaque section */
.cursor-section {
    width: 45%;
    height: 150px;
    margin: 10px;
    display: flex;
    justify-content: center;
    align-items: center;
    font-size: 1.5em;
    background-color: #e0e0e0;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    transition: background-color 0.3s;
}

.cursor-section:hover {
    background-color: #d0d0d0;
}

/* Curseur pour chaque section */
.arrow {
    cursor: default;
}

.pointer {
    cursor: pointer;
}

.text {
    cursor: text;
}

.crosshair {
    cursor: crosshair;
}

.wait {
    cursor: wait;
}

/* Styles responsive */
@media (max-width: 600px) {
    .cursor-section {
        width: 100%;
        font-size: 1.2em;
        margin: 5px 0;
    }
}

