.arancel{
    background-color: #F6F6FA;
    padding-top: 0px !important;
    padding-bottom: 0px !important;
    margin-top: 0px !important;
}

.arancel-table-title{
    background-color: #ff0000 !important;
    color: #fff !important;
    opacity: 1.0 !important;
}

.form {
    display: flex;
    flex-direction: column;
    justify-content: center;
}

.img-fluid {
    width: 100%;
    height: auto;
}

.floating-menu {
    position: fixed;
    left: 20px;
    top: 50%;
    transform: translateY(-50%);
    display: flex;
    flex-direction: column;
    gap: 16px;
    z-index: 1000;
}

a.menu-btn{
    color: #fff !important;
}

.menu-btn {
    width: 48px;
    height: 48px;
    background: #222;
    background: #ff0000;
    color: #fff;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    text-decoration: none;
    font-size: 20px;
    box-shadow: 0 4px 10px rgba(0,0,0,0.3);
    transition: all 0.3s ease;
}

.menu-btn:hover {
    background: #444;
    background: #ff0000;
    background: #222;
    transform: scale(1.1);
}

.menu-btn::after {
    content: attr(data-title);
    position: absolute;
    left: 60px;
    background: #000;
    color: #fff;
    padding: 4px 8px;
    border-radius: 4px;
    opacity: 0;
    transform: translateY(-50%);
    top: 50%;
    pointer-events: none;
    transition: opacity 0.2s ease;
    font-size: 12px;
}

.menu-btn:hover::after {
    opacity: 1;
}