* {
  margin: 0;
  padding: 0;
  box-sizing: border-box; /*Padding included in boxe size  */
  font-family: -apple-system, BlinkMacSystemFont, "Segoe UI", Roboto, Helvetica, Arial, sans-serif;
}

body
{
    height: 100vh;  /* hauteur minimale du body = 100 % de la hauteur de l’écran */
    background-color:#FBFBFB ;
    display: grid;
    grid-template-columns: repeat(12, 1fr);
    grid-template-rows: repeat(12, 1fr);
    gap: 0;
}

img.three-dots {
    margin-left: auto;
    margin-right: 10px;
    margin-top: 3px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

img.three-dots:hover {
    transform: scale(1.25);
    opacity: 0.85;
}

img.three-dots:active {
    transform: scale(1.1);
}

/* === THREE DOTS === */

img.three-dots {
    margin-left: auto;
    margin-right: 10px;
    margin-top: 3px;
    transition: transform 0.2s ease, opacity 0.2s ease;
}

img.three-dots:hover {
    transform: scale(1.25);
    opacity: 0.85;
}

img.three-dots:active {
    transform: scale(1.1);
}

/* === MODALE OPTIONS === */

.modal-post-options {
    border: none;
    padding: 0;
    border-radius: 12px;
    max-width: 400px;
    width: 90%;
    background: white;
    box-shadow: 0 4px 16px rgba(0, 0, 0, 0.15);
    margin: auto;
}

.modal-post-options::backdrop {
    background-color: rgba(0, 0, 0, 0.65);
}

.modal-options-content {
    display: flex;
    flex-direction: column;
}

.option-btn {
    padding: 16px;
    border: none;
    background: white;
    cursor: pointer;
    font-size: 14px;
    border-bottom: 1px solid #dbdbdb;
    transition: background-color 0.2s;
    text-align: center;
    color: #000;
}

.option-btn:first-child {
    border-radius: 12px 12px 0 0;
}

.option-btn:last-child {
    border-bottom: none;
    border-radius: 0 0 12px 12px;
}

.option-btn:hover {
    background-color: #fafafa;
}

.option-report {
    color: #ed4956;
    font-weight: 700;
}

.option-cancel {
    color: #000;
}

.option-btn:active {
    background-color: #e0e0e0;
    transform: scale(0.98);
}


