/* Card Styling */
.card {
    border: none;
    transition: transform 0.3s ease-in-out, box-shadow 0.3s ease-in-out;
}

.card:hover {
    transform: scale(1.02);
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.2);
}

.card-img-top {
    border-top-left-radius: 20px;
    border-top-right-radius: 20px;
    background-color: #ffffff;
}

.card-title {
    font-size: 1.2rem;
    font-weight: bold;
    margin-bottom: 10px;
}

/*form label */
.form-label {
    color: black;
}

/* Selectors */
.form-select {
    border: none;
    border-radius: 3px;
    padding: 8px;
    color: black;
    font-size: 1.0rem;
}

/* Price Styling */
.card-text {
    font-size: 2rem;
    font-weight: bold;
    color: #000;
}

.text-danger {
    font-size: 1.2rem;
}

/* Buttons */
.btn {
    padding: 8px 12px;
    border-radius: 10px;
}

.btn-danger {
    background-color: #dc3545;
    border: none;
    color: whitesmoke;
}

.btn-dark {
    background-color: #343a40;
    border: none;
    color: whitesmoke;
}

.btn-warning {
    background-color: #ffc107;
    border: none;
    color: whitesmoke;
}

/* Cart Summary */
.text-end h4 {
    font-size: 1.9rem;
    font-weight: bold;
    color: whitesmoke;
}
