﻿p {
    color: black;
}

.cont {
    max-width: 1200px;
    margin: 0 auto;
}

.tabs {
    display: flex;
    justify-content: space-between;
    margin-bottom: 10px;
}

.btn-light-grapes {
    background-color: #28a7451c; /* Light grapes color */
    color: black; /* Text color */
    border: 1px solid #a6a6a6; /* Border color */
    /* Add more styling properties as needed */
}


.tab {
    flex-grow: 1;
    text-align: center;
    padding: 10px;
    background-color: #f0f0f0;
    cursor: pointer;
}

    .tab.active {
        background-color: darkgray;
        color: black;
    }

.tab-content {
    display: none;
    padding: 20px;
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
}

    .tab-content.active {
        display: block;
    }



.form-section {
    background-color: #ffffff;
    border-radius: 10px;
    box-shadow: 0px 0px 10px 0px rgba(0,0,0,0.1);
    padding: 20px 20px 5px 20px;
    /*  margin-bottom: 20px; */
    display: flex; /* Use flexbox */
    justify-content: space-between; /* Distribute items evenly */
    flex-wrap: wrap; /* Allow wrapping */
}

    .form-section > div {
        flex: 0 0 calc(33.3% - 20px); /* Each combo box takes one-third of the width */
    }

label {
    font-weight: bold;
}

select {
    width: 100%;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

#submitBtn {
    background-color: #1f497d;
    color: white;
    padding: 5px 10px; /* Reduced padding */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: right;
    height: 30px; /* Reduced height */
    width: 80px; /* Reduced width */
}

submitBtn:hover {
    background-color: #1f497d;
}

button {
    background-color: #1f497d;
    color: white;
    padding: 5px 10px; /* Reduced padding */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    float: left;
    height: 30px; /* Reduced height */
}

submitBtn:hover {
    background-color: #1f497d;
}

table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
}

th, td {
    border: 1px solid #ddd;
    padding: 6px; /* Decrease padding */
    text-align: left;
    font-size: 14px; /* Decrease font size */
}

th {
    background-color: #e7eff6; /* Light blue header background */
    color: #1f497d; /* Dark blue header text color */
}

.product-details-row {
    display: flex;
    align-items: center;
}

.product-detail {
    margin-right: 20px;
}

.product-detail-image {
    max-width: 200px;
}




.form-group input {
    height: 30px; /* Adjust the height as needed */
}
