#create-tag-modal .form-title {
    font-size: 20px; /* Adjust based on your preference */
    color: #333; /* A shade that matches your site's color scheme */
    margin: 10px 0; /* Provides spacing between title and form content */
    font-weight: 600;
    padding: 0;
}

/* General Styles for the Create Term Form */
.create-term-form {
    /*background-color: #f9f9f9;*/
    padding: 0px;
    border-radius: 5px;
    /*box-shadow: 0 2px 5px rgba(0, 0, 0, 0.2);*/
    margin-top: 20px;
}

.create-term-form input[type="text"],
.create-term-form select {
    width: 100%;
    padding: 10px;
    margin-bottom: 15px;
    border: 1px solid #ddd;
    border-radius: 4px;
    box-sizing: border-box;
}

.create-term-form select[multiple] {
    height: auto;
    min-height: 100px;
}

/* Styling the Save Button */
.create-term-form .save-new-term {
    background-color: #438bca;
    color: white;
    padding: 10px 20px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    font-size: 16px;
    margin: 10px 0;
    position: relative;
    min-width: 120px;
    min-height: 38px;
}

.save-new-term:disabled {
    cursor: not-allowed; /* Cursor indicating it's not clickable */
    opacity: 0.5; /* Slightly transparent */
}

.create-term-form .save-new-term:hover {
    background-color: #367ba9;
}

/* Placeholder Styles */
.create-term-form ::placeholder {
    color: #666;
    opacity: 1;
}

.checkbox-list-container {
    border: 1px solid #ddd;
    padding: 10px;
    border-radius: 4px;
    max-height: 200px; /* Adjust as needed */
    overflow-y: auto; /* Enables scrolling if the list is long */
    margin-bottom: 15px;
}

.checkbox-list-container input[type="text"] {
    width: 100%;
    padding: 5px;
    margin-bottom: 10px;
    border: 1px solid #ccc;
    border-radius: 3px;
}

.checkbox-item {
    margin-bottom: 1px;
    font-size: 13px;
}

.checkbox-list-container .child-tags {
    margin-left: 20px;
    border-left: 1px dashed #ccc;
    padding-left: 10px;
}

.floating-action-button {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background-color: #438bca; /* Change the color as needed */
    color: white;
    border: none;
    border-radius: 50%;
    width: 60px; /* Diameter of the circle */
    height: 60px; /* Diameter of the circle */
    font-size: 30px; /* Size of the '+' symbol */
    box-shadow: 0 4px 8px rgba(0,0,0,0.2);
    cursor: pointer;
    outline: none;
    z-index: 1000; /* Ensure it's above other elements */
}

.floating-action-button:hover {
    background-color: #367ba9; /* Slightly darker shade on hover */
}