.page-content {
    padding: 20px;
    width: 100%;
    max-width: 100%;
    overflow-x: hidden;
}

.branch-scroll {
    max-height: 50px;
    overflow-y: auto;
    padding-right: 6px;
    margin-bottom: 4px;
}

    .branch-scroll::-webkit-scrollbar {
        width: 6px;
    }

    .branch-scroll::-webkit-scrollbar-thumb {
        background-color: var(--primary-light);
        border-radius: 3px;
    }

    .branch-scroll::-webkit-scrollbar-track {
        background: transparent;
    }

.receipt-container {
    display: flex;
    justify-content: center;
    align-items: center;
    padding: 2rem;
    min-height: 100vh;
    background: linear-gradient(135deg, #f5f7fa, #c3cfe2);
}

.receipt-card {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background: rgba(255, 255, 255, 0.15);
    backdrop-filter: blur(10px);
    border-radius: 1rem;
    box-shadow: 0 8px 32px rgba(31, 38, 135, 0.15);
    padding: 2rem;
    max-width: 400px;
    width: 100%;
    border: 1px solid rgba(255, 255, 255, 0.2);
    text-align: center;
}

.receipt-buttons {
    display: flex;
    flex-direction: column;
    gap: 1rem;
    margin-top: 1.5rem;
}
