/* Custom styles for the admin page */
.wrap h1 {
    font-size: 24px;
    color: Blue;
}

.personalInfo{
color : red;
display: flex;
align-items: center;
}

.forminput{
    /*display: flex;*/
    align-items: center;
    margin-bottom: 15px;
}

.forminput label{
    width: 150px; /* Adjust width as needed */
    text-align: right;
    margin-right: 10px;
}

h3 {
    margin-top: 20px;
}

/* admin-style.css */
.forminput {
    margin: 20px;
}

.form-row {
    display: flex;
    align-items: center; /* Center items vertically */
    margin-bottom: 10px; /* Space between rows */
}

.form-row label {
    width: 200px; /* Adjust width as needed */
    margin-right: 10px; /* Space between label and input */
    font-weight: bold;
}

.form-row input,
.form-row select,
.form-row textarea {
    flex: 1; /* Allow input to take the remaining space */
    padding: 5px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.form-row textarea {
    height: 100px; /* Adjust height as needed */
    resize: vertical; /* Allow vertical resizing */
}

.form-row input[type="date"],
.form-row input[type="number"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row input[type="text"],
.form-row input[type="textareal"]{
    width: 30px;
}

/* admin-style.css */
.form-row {
    display: flex;
    align-items: flex-start; /* Align items to the top */
    margin-bottom: 15px; /* Space between rows */
}

.title {
 /* Fixed width for the label */
    margin-right: 20px; /* Space between title and checkboxes */
    font-weight: bold;
    line-height: 1.5; /* Improve readability */
}

.checkbox-group {
    display: flex;
    flex-wrap: wrap; /* Wrap to the next line if items overflow */
}

.checkbox-item {
    display: flex;
    align-items: center; /* Align checkbox and label vertically */
    margin-right: 10px; /* Reduced space between checkbox items */
    margin-bottom: 5px; /* Reduced space below each checkbox item */
}

.checkbox-item input[type="checkbox"] {
    margin-right: 3px; /* Reduced space between checkbox and label */
}


@media (max-width: 768px) {
    .forminput label {
        width: 100%; /* Full width on small screens */
        text-align: left; /* Align text to left */
        margin-right: 0; /* Remove right margin */
        margin-bottom: 5px; /* Space below label */
    }

    .form-row {
        flex-direction: column; /* Stack inputs vertically */
    }
    
    
.form-row input[type="date"],
.form-row input[type="number"],
.form-row input[type="tel"],
.form-row input[type="email"],
.form-row input[type="text"],
.form-row input[type="textareal"]{
    width: 100%;
}
}

