.grid-item {
    background-color: #ffffff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    font-weight: bold;
    margin-top: 12px;
}
.form-group label {
    display: block;
    font-weight: 500;
    margin-bottom: 5px;
    color: #404040;
    font-size: 14px;
}
.info-icon {
    position: relative;
    display: inline-block;
    width: 11px;
    height: 11px;
    border: 1px solid #666666;
    border-radius: 50%;
    color: #666666;
    text-align: center;
    line-height: 10px;
    font-size: 9px;
    margin-left: 5px;
    cursor: help;
}
.form-group .form-control {
    width: 100%;
    padding: 10px;
    border: 1px solid #cfcfcf;
    border-radius: 4px;
    resize: vertical;
    overflow: hidden;
    font-size: 14px;
}
.form-control {
    font-family: "Montserrat", sans-serif;
    color: #333;
    font-size: 14px;
    font-weight: 400;
}
.form-column {
    flex: 1;
    display: flex;
    flex-direction: column;
}
.form-columns {
    display: flex;
    gap: 20px;
    width: 100%;
}

/* Style the container */
.radio-buttons {
    display: flex;
    gap: 80px;
    margin-bottom: 5px;
}

/* Hide the default radio button */
.radio-button {
    display: none;
}

/* Style for the custom radio circle */
.radio-circle {
    display: inline-block;
    width: 16px; /* smaller size */
    height: 16px; /* smaller size */
    border: 2px solid #333;
    border-radius: 50%;
    position: relative;
    margin-right: 8px; /* smaller margin */
    transition: background-color 0.3s ease;
    vertical-align: middle; /* align circle with text */
}

/* When the radio button is selected */
.radio-button:checked + .radio-circle {
    border-color: black;
}

/* Optional: Add a dot inside the circle when selected */
.radio-button:checked + .radio-circle::after {
    content: "";
    display: block;
    position: absolute;
    top: 50%;
    left: 50%;
    width: 9px; /* smaller dot */
    height: 9px; /* smaller dot */
    background-color: #8a194f;
    border-radius: 50%;
    transform: translate(-50%, -50%);
}

/* Style the label */
.radio-label {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 14px; /* matching font size */
}
/*for texts*/
.general-container, .track-container {
    display: flex;
    align-items: center;
    justify-content: center;
    margin-bottom: 15px;
}
.general-container .text {
width: max-content;
}
.left-line, .right-line {
    width: 480px;
    height: 2px;
    background-color: #800040;
    border: none;
}
.text {
    font-size: 18px;
    color: #800040;
    margin: 0 10px;
    font-weight: bold;
}
.div-details {
    padding: 20px;
    border: 1px solid #ddd;
    border-radius: 5px;
    background-color: #ffffff;
    margin-bottom: 50px;
}

.image-upload{
    display: flex;
    flex-direction: row;
    gap: 200px;
    justify-content: center;
    align-content: center;
    flex-wrap: wrap;
    text-align: center;
}

.upload-container {
    display: flex;
    gap: 300px; /* Add spacing between the upload areas */
}

.upload-container > div {
    flex: 1; /* Optional: Make both upload areas the same width */
}

.drag-drop-area {
    width: 425px;
    height: 250px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    margin-bottom: 0px;
    font-size: 14px;
    margin-top: 0px;
    overflow: hidden;
}

.file-name {
    display: none;
}

.brochure-table th {
    color: #7e1550;
    font-weight: 700;
    background-color: #f2f2f2;
}

.brochure-table th, .brochure-table td {
    white-space: break-spaces;
    padding: 15px;
    border-bottom: 1px solid #ddd;
    border-right: 1px solid #ddd;
    font-size: 14px;
    font-weight: 500;
}

.brochure-table th:first-child, .brochure-table td:first-child {
    border-left: 1px solid #ddd;
}

.btn-add {
    background-color: #7e1550;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    font-weight: 500;
    margin: 0;
}

/* Add border-radius and font styling to Quill editor */
.ql-container {
    font-family: 'Montserrat', sans-serif; /* Set font to Montserrat */
    font-weight: normal !important;
    border-bottom-left-radius: 5px;
    border-bottom-right-radius: 5px;
}

.ql-editor {
    font-family: 'Montserrat', sans-serif; /* Ensure the editor text uses the Montserrat font */
    font-weight: normal !important;
}

.ql-toolbar.ql-snow {
    border-top-left-radius: 5px;
    border-top-right-radius: 5px;
}


/* Generate Button for TinyMCE */
.generate-btn {
    background-color: #8b1f54;
    color: white;
    border: none;
    padding: 8px 15px;
    border-radius: 4px;
    cursor: pointer;
    font-size: 15px;
    font-weight: bold;
    font-family: "Montserrat", Arial, sans-serif;
    position: absolute;  /* Makes it position relative to the parent container */
    bottom: 10px;        /* Positions the button from the bottom of the textarea */
    right: 10px;         /* Positions the button from the right of the textarea */
}

.generate-btn:hover {
    background-color: #6e183f;
}

.generate-btn i {
    font-size: 15px;    /* Size for the paper plane icon */
    color: white;       /* White color for the icon */
}
.error-message {
    display: flex;
    align-items: center;
    color: #ff4757 !important;
    font-size: 0.85rem;
    margin-top: 0.5rem;
    margin-bottom: 1rem;
    padding: 0.75rem 1rem;
    background-color: #fff8f8;
    border-left: 4px solid #ff4757;
    border-radius: 0 4px 4px 0;
    box-shadow: 0 2px 4px rgba(255, 71, 87, 0.1);
}

.listing-brochure-add-btn {
    background-color: #7e1550;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 14px;
    margin: 0; /* Ensure there's no margin pushing the button down */
  }