.container {
    padding: 20px;
}

.btn-hover {
    transition: all 0.3s ease;
    border: 1px solid #e0e0e0;
}

.btn-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
    background-color: #f8f9fa;
}

.btn-hover:hover i {
    color: #007bff !important;
}

.btn-hover:hover span {
    color: #0056b3 !important;
}

/* 403 */
.error-container {
    text-align: center;
    padding: 50px;
}

.error-container h1 {
    font-size: 48px;
    color: #d9534f;
}

.error-container p {
    font-size: 18px;
    margin-bottom: 20px;
}

.error-container a {
    display: inline-block;
    padding: 10px 20px;
    background-color: #5bc0de;
    color: white;
    text-decoration: none;
    border-radius: 5px;
}
/* END 403 */

/* PRINT */
@media print {
    body * {
        visibility: hidden;
    }
    .printable-invoice,
    .printable-invoice * {
        visibility: visible;
        display: block;
    }
    .printable-invoice {
        position: absolute;
        left: 0;
        top: 0;
        width: 100%;
    }
}

.print-invoice {
    padding: 20px;
    background-color: white;
    color: black;
}

.print-invoice table {
    width: 100%;
    border-collapse: collapse;
}

.print-invoice th,
.print-invoice td {
    border: 1px solid #ddd;
    padding: 8px;
    text-align: left;
}

.print-invoice th {
    background-color: #f2f2f2;
}
/* END PRINT */
