#print-button-container {
    position: fixed;
    bottom: 80px;
    right: 20px;
    z-index: 9999;
}

#print-button {
    background-color: #c11226;
    color: #fff;
    border: none;
    padding: 10px;
    border-radius: 50%;
    cursor: pointer;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);
    transition: background-color 0.3s ease;
}

#print-button:hover {
    background-color: #c23444;
}

#loader {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 9999;
}
