@media print {
    .main-nav-bar {
        display: none;
    }
    .no-print {
        display: none !important;
    }
    .print-only {
        display: block !important;
    }
}

.print-only {
    display: none;
}
.flashes{
    display: flex;
    max-width: fit-content;
    font-weight: bold; 
    display: flex; 
    margin-left: 50%; 
    justify-content: center; 
    transform: translateX(-50%);
    margin-top: 1rem;
}
.flash-message {
     list-style-type: none;
     padding: 0.5rem 1rem;
}

/* Green styling for success */
.alert-success {
    background-color: #dff1e3;
    color: #02350f;
    border: 1px solid #c3e6cb;
}

/* Red styling for errors */
.alert-error {
    background-color: #f8d7da;
    color: #f11127;
    border: 1px solid #f5c6cb;
}

.card {
    width: 18rem;
    background-color: green;
}
.card .btn {
        display: flex;
        width: 100%;
        justify-content: center;
    }


.card-img-top {
    display: flex;
    width: 8rem;
    margin: 0 auto;
}

.three-cards {
    display: grid;
    grid-template-columns: repeat(3, 18rem);
    justify-content: center;
    gap: 2rem;
    
}
@media (max-width: 1000px) {
    .three-cards {
        grid-template-columns: repeat(2, 18rem);
    }
}

@media (max-width: 700px) {
    .three-cards {
        grid-template-columns: 18rem;
    }
}

.main-body {
    background-color: rgb(222, 250, 222);
}

.add_customer_name {
    background-color: rgb(222, 250, 222);
    border-color: darkgreen;
    display: flex;
    height: min-content;
    
}

.add_custom_item {
    input, select {
        margin: 8px;
        width: 75%;
    }
}


