﻿.accordion-button::after {
    margin-left: 0 !important;
    margin-right: auto !important;
}

.offcanvas .btn-close,
.modal .btn-close {
    position: absolute;
    left: 1rem;
    right: auto;
}

.offcanvas,
.modal {
    width: 100% !important;
    max-width: 500px !important;
    margin: 0 auto;
    border-top-left-radius: 25px;
    border-top-right-radius: 25px;
}

.offcanvas-header,
.modal-header {
    padding: 20px;
    display: flex;
    justify-content: space-between;
    align-items: center;
    position: relative;
}

    .offcanvas-header h5,
    .modal-header h5 {
        margin-bottom: 0 !important;
        font-size: 14px !important;
        font-weight: bold;
    }

    .offcanvas-header .btn-close,
    .modal-header .btn-close {
        margin-left: 15px !important;
        font-size: 14px !important;
    }

.btn-action {
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    transition: all .3s ease;
    min-height: 45px;
}

.btn-damage {
    background-color: #ffd75a;
    color: #212529;
}

    .btn-damage:hover {
        background-color: #e0a800;
    }

.btn-receive {
    background-color: #1a4fb3;
    color: #fff;
}

    .btn-receive:hover {
        background-color: #0b5ed7;
    }

.btn-cancel {
    background-color: #6c757d;
    color: #fff;
    border: none;
    border-radius: 5px;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: bold;
    transition: all .3s ease;
    min-height: 45px;
}

    .btn-cancel:hover {
        background-color: #5a6268;
    }

.btn-cancel-red {
    background-color: #dc3545;
    color: #fff;
}