.button:disabled {
    background-color: var(--inactive-color); /* Grey */
    cursor: not-allowed;
    opacity: 0.65;
}

.button-fill{
    background-color: var(--primary-color);
}
.button-fill-secondary{
    background-color: var(--inactive-color);
}
.outlined-button {
    background: var(--main-background);
    border: 1px solid;
    color: var(--inactive-color);
}

button:hover.outlined-button {
    background: var(--primary-color);
    border: 1px solid var(--primary-color);
    color: white;
}
button.section-button {
    padding: 0 !important;
    background: transparent;
    color: var(--primary-color);
    width: fit-content;
}
button.section-button:hover {
    text-decoration:underline;
}
.block-button {
    background: var(--cancel-color);
}
.block-button:hover {
    background: var(--cancel-hover-color);
}
.edit-picture-btn {
    position: absolute;
    bottom: 20px;
    right: 20px;
    background: transparent;
    border: 2px solid;
}
.edit-picture-btn:hover {
    background: var(--primary-color);
    border: 2px solid var(--primary-color);
}
.rounded-outlined-button {
    display: flex;
    align-items: center;
    justify-content: center;
    background: none;
    color: var(--primary-color);
    border: 1px solid var(--primary-color);
    border-radius: 50%;
    width: 20px;
    height: 20px;
    padding: 0;
}
.rounded-outlined-button:hover {
    color: white;
}
.arrow-button {
    background: transparent;
    color: var(--primary-color);
}
.arrow-button:hover {
    background: transparent;
    color: var(--primary-color);
}
.lightbox-modal-content .close-modal-btn {
    position: absolute;
    right: 10px;
    top: 10px;
    background: #ddd;
    border-radius: 50%;
}
.lightbox-modal-content .close-modal-btn:hover {
    background: var(--cancel-color);
}
/* ------------- BUTTON STYLING SECTION ------------- */
.platform-buttons img {
    height: 28px;
}
.platform-buttons {
    display: flex;
    gap: 20px;
    flex-direction: column;
}
.platform-buttons button{
    background:white;
    border:1px solid var(--primary-color);
    width:100%;
    height: 45px;
    padding:3px;
    display: flex;
    justify-content:center;
    align-items: center;
    margin: 0;
}
.platform-buttons button:hover{
    background:white;
    border:3px solid var(--primary-color);
    padding:0;
    width:100%;
}
.report-type-btn {
    border: 1px solid var(--primary-color);
    background-color: transparent;
    color: var(--primary-color);
}

.report-type-btn:hover {
    background-color: #f0f0f0;
    color: var(--primary-color);
}

.report-type-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
}
.button-row {
    position: fixed;
    bottom: 20px;
    left: 50%;
    transform: translateX(-50%);
    background-color: #f9f9f9;
    padding: 10px 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    z-index: 1005;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
}
@media (max-width: 768px) {
    .button-container {
        display: flex;
        justify-content: center;
        align-items: center;
        flex-direction: column;
        width: 100%; 
    }
    .report-type-buttons {
        display: flex;
        flex-wrap: wrap;
        justify-content: space-between;
        gap: 10px;
    }

    .report-type-btn {
        width: 46%;
        box-sizing: border-box;
        margin-bottom: 10px;
    }
    .button-row {
        width: 90%;
        left: 5%;
        transform: none;
    }
    .delete-btn {
    width: 35px;
    height: 35px;
    margin: 10px;
    font-size:35px;
    }
}