/* Container styles */
.sh-inquery-container {
    background-color: #f8f9fa;
    border-radius: 8px;
    padding: 20px;
    max-width: 981px;
    margin: 30px auto;
    box-shadow: 0 2px 8px rgba(0, 0, 0, 0.1);
}

/* Form group styles */
.sh-inquery-container .form-group {
    margin-bottom: 20px;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.sh-inquiry-form label {
    display: block;
    margin-bottom: 8px;
    font-size: 14px;
    font-weight: bold;
    color: #fff;
}

.sh-inquery-container input,
.sh-inquery-container select,
.sh-inquery-container textarea {
    width: 100%;
    padding: 10px 15px;
    border: 1px solid #ced4da;
    border-radius: 5px;
    font-size: 14px;
    transition: border-color 0.3s, box-shadow 0.3s;
}

.sh-inquery-container input:focus,
.sh-inquery-container select:focus,
.sh-inquery-container textarea:focus {
    border-color: #051934;
    box-shadow: 0 0 3px rgba(0, 123, 255, 0.25);
    outline: none;
}

.sh-inquery-container button {
    padding: 10px 20px;
    background-color: #051934;
    color: #fff;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s;
}

.sh-inquery-container button:hover {
    background-color: #0056b3;
}
.sh-inquery-added-items-table-con{
    background-color: #fff;
    padding: 20px;
    margin-top: 30px;
    margin-bottom: 30px;
    border-radius: 15px;
}
/* Table styles */
#sh-inquery-added-items-table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 20px;
    background-color: #fff;
    border: 1px solid #dee2e6;
    border-radius: 5px;
    overflow: hidden;
    border: 1px;
}


#sh-inquery-added-items-table th,
#sh-inquery-added-items-table td {
    padding: 10px;
    text-align: center;
    font-size: 14px;
    color: #495057;
    border: 1px solid #dee2e6;
}

#sh-inquery-added-items-table th {
    background-color: #f1f3f5;
    font-weight: bold;
}

#sh-inquery-added-items-table tr:hover {
    background-color: #f8f9fa;
}

/* Required field indication */
.sh-inquery-container .form-group span {
    color: red;
    font-size: 12px;
    margin-left: 5px;
}

/* File input styles */
.sh-inquery-container input[type="file"] {
    border: none;
    padding: 5px;
    font-size: 14px;
    background-color: #f8f9fa;
    color: #495057;
}

/* custom */
.row-group-1 {
    display: flex
;
    gap: 10px;
}
.sh-inquiry-form {
    display: flex;
    flex-direction: column;
    align-items: stretch;
    background-color: #d3731c;
    padding: 20px;
    border-radius: 15px;
}
.row-group-2 {
    display: grid
;
    grid-template-columns: auto auto auto;
    gap: 20px;
}
.row-group-2 {
    display: grid
;
    grid-template-columns: auto auto auto;
    gap: 20px;
    border: 2px solid #051934;
    border-radius: 15px;
    padding: 20px;
}
div#kala-column {
    width: 45%;
}
.row-group-2 .form-group {
    margin-bottom: 20px;
    display: flex
;
    flex-direction: column;
    justify-content: end;
}

/* Responsiveness */
@media (max-width: 768px) {
    .sh-inquery-container {
        padding: 15px;
    }

    #sh-inquery-added-items-table th,
    #sh-inquery-added-items-table td {
        font-size: 12px;
        padding: 8px;
    }
}
