/* General Form Styling */
#__vtigerWebForm {
    max-width: 100%;
    margin: 0 auto;
    padding: 20px;
    background-color: #fff;
    border-radius: 8px;
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.1);
    font-family: 'Arial', sans-serif;
}

/* Table Layout Replacement */
#__vtigerWebForm table {
    width: 100%;
    border-collapse: collapse;
}

#__vtigerWebForm td {
    padding: 10px;
}

/* Label Styling */
label {
    display: block;
    margin-bottom: 5px;
    color: #266173;
    font-weight: bold;
}

/* Input and Select Box Styling */
input[type="text"],
select {
    width: 100%;
    padding: 10px;
    margin-bottom: 20px;
    border: 1px solid #ccc;
    border-radius: 5px;
    box-sizing: border-box;
    transition: border-color 0.3s;
}

input[type="text"]:focus,
select:focus {
    border-color: #33C48F;
    outline: none;
}

/* Button Styling */
input[type="submit"] {
    width: 30%;
    padding: 10px;
    border: none;
    border-radius: 5px;
    background-color: #33C48F;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}

input[type="submit"]:hover {
    background-color: #266173;
}

/* Responsive Design */
@media (max-width: 600px) {
    #__vtigerWebForm td {
        display: block;
        width: 100%;
    }
}

button {
    width: 30%;
    padding: 10px;
    border: none;
    border-radius: 4px;
    background-color: #33C48F;
    color: white;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s;
}
