.action-buttons {
    position: absolute;
    bottom: 30px;
    right: 30px;
    display: flex;
    gap: 10px;
    z-index: 2;
}

.action-buttons .btn {
    flex: 1;
    padding: 10px;
    border-radius: 20px;
    font-weight: 500;
    background: rgba(255, 255, 255, 0.2);
    border: none;
    color: #fff;
    cursor: pointer;
    min-width: 100px;
    transition-duration:0.4s;
    font-family: 'Rubik Dirt', system-ui;
}

/* Hidden class (global utility) */
.hidden {
    display: none !important;
}

@media screen and (max-width: 480px) and (orientation: portrait) {
    .action-buttons {
        position: absolute;
        top: 20px;
        right: 20%;
        display: flex;
        gap: 10px;
        z-index: 9998;
        width: 60%;
        height:40px!important;
    }
}

@media screen and (min-width: 1025px) {
    .action-buttons {
        position: absolute;
        bottom: 10px;
        right: 30px;
        display: flex;
        gap: 10px;
        z-index: 2;
    }

}

.action-buttons .btn:hover {
    background-color:white;
    color:black;
}