/* section {
    max-width: 1000px;
    margin: 40px auto;
    background: #fff;
    padding: 30px;
    border-radius: 10px;
    box-shadow: 0 4px 15px rgba(0,0,0,0.1);
} */

h2, h3, h4 {
    color: #333;
}

form {
    margin-bottom: 20px;
    background: #f9f9f9;
    padding: 15px;
    border-radius: 8px;
    border: 1px solid #ddd;
}

form input, form select, form button {
    padding: 8px 10px;
    margin: 5px 0;
    border-radius: 5px;
    border: 1px solid #ccc;
    font-size: 14px;
}

form input {
    width: 200px;
}

form select {
    width: 220px;
}

form button {
    background-color: #007bff;
    color: #fff;
    border: none;
    cursor: pointer;
    transition: all 0.3s ease;
}

form button:hover {
    background-color: #0056b3;
}

/* Role Permissions List */
ul {
    list-style-type: disc;
    margin-left: 30px;
    padding-left: 0;
}

ul li {
    margin-bottom: 5px;
}

ul li form {
    display: inline;
}

hr {
    border: 0;
    border-top: 1px solid #ddd;
    margin: 30px 0;
}

/* Headings */
h2 {
    text-align: center;
    margin-bottom: 30px;
}

h3 {
    margin-bottom: 10px;
}

/* Buttons inline style */
button {
    padding: 5px 10px;
    font-size: 13px;
}

/* Responsive */
@media (max-width: 768px) {
    form input, form select {
        width: 100%;
    }
}
