.card {
            position: relative; /* or static */
            overflow: visible;  /* no scrollbars */
            }

            #fileList {
            margin-top: 0.5rem;
            }
            .quote_min_height {
            min-height: 100px ; /* keeps the card area fixed minimum height */
            }
            .quote-card {
            display: block;
            position: relative;
            overflow: visible;
            }

            .quote-form {
            display: block;
            }

            .row.g-3 {
            align-items: flex-start;
            }

            #fileList {
            margin-top: 0.5rem;
            margin-bottom: 0;
            }
            .quote-card {
            max-width: 600px;
            margin: 2rem auto;
            border-radius: 1rem;
            box-shadow: 0 4px 15px rgba(0, 0, 0, 0.08);
            overflow: hidden;
            }
            .quote-header {
            background: rgb(66, 181, 73);
            color: white;
            padding: 0.5rem 0.5rem;
            text-align: center;
            }

            .quote-header h4 {
                color: white;
            }
            .quote-form .form-control, .quote-form .form-select {
            border-radius: 0.4rem;
            font-size: 0.8rem;
            padding: 0.4rem 0.8rem;
            }
            label {
            font-size: 0.75rem;
            margin-bottom: 0.1rem;
            font-weight: 500;
            }
            .btn-quote {
            background-color: rgb(66, 181, 73);
            border: none;
            color: white;
            border-radius: 0.5rem;
            padding: 0.55rem 1.5rem;
            font-weight: 600;
            font-size: 1rem;
            width: 100%;
            transition: background-color 0.3s ease;
            }
            .btn-quote:hover {
            background-color: rgb(66, 181, 73);
            }
            .uploaded-files {
            font-size: 0.85rem;
            color: #555;
            margin-top: 0.5rem;
            }  
            
            .uploaded-files span {
                font-size: 0.9rem;
            }