.sell-form {
    margin: 0 auto;
    display: grid;
    gap: 20px;
}

.sell-form hr {
    border-color: #2221;
}

#sellSubmissionForm h3 {
    font-family: 'Switzer';
    font-weight: bold;
    font-size: 20px;
}

.form-three-column {
    display: flex;
    width: 100%;
    justify-content: center;
    column-gap: 20px;
}

.form-two-column {
    display: flex;
    width: 100%;
}

.sell-form .form-group {
    display: flex;
    flex-direction: column;
    width: 100%;
    margin-bottom: 10px;
}

.sell-form .form-group label {
    margin-bottom: 15px;
    font-weight: 600;
}

.sell-form .form-row {
    display: flex;
    gap: 15px;
}

.sell-form input,
.sell-form select,
.sell-form textarea {
    width: 100% !important;
    padding: 20px 20px;
    border-radius: 50px;
    border-color: #2222;
}

.amenities-section {
    margin-bottom: 20px;
}

.amenities-section .section-title {
    display: block;
    font-weight: 600;
    margin-bottom: 10px;
}

.amenities-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(220px, 1fr));
    gap: 10px 30px;
}

.amenities-grid label {
    display: flex;
    align-items: center;
    font-size: 15px;
    color: #333;
    cursor: pointer;
    gap: 8px;
    margin-bottom: 0px !important;
}

.amenities-grid input[type="checkbox"] {
    width: 26px;
    height: 26px;
    accent-color: #000;
    /* Change to theme color */
    cursor: pointer;
    width: 10% !important;
}

.iti__selected-flag {
    border-radius: 50px;
    width: 100%;
}

.sell-form .submit-btn {
    background-color: #930708;
    color: #fff;
    width: max-content;
    display: flex;
    justify-content: space-between;
    padding: 5px 5px 5px 30px;
    margin-top: 20px;
    border-radius: 100px;
    align-items: center;
    column-gap: 30px;
}

.sell-form .submit-btn img {
    background-color: #fff;
    width: 50px;
    height: 50px;
    padding: 2px 15px;
    border-radius: 100%;
    object-fit: contain;
}

.sell-form .submit-btn:hover {
    background-color: #750202;
}

.property-info-row {
    display: flex;
    flex-wrap: wrap;
    gap: 30px;
    margin-bottom: 30px;
}

.info-group {
    flex: 1 1 calc(50% - 30px);
}

.info-group label {
    font-weight: 600;
    display: block;
    margin-bottom: 8px;
    color: #333;
}

.info-group .info-fields {
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.info-group .info-field {
    position: relative;
}

.info-group .info-input {
    width: 100%;
    border: 1px solid #ddd;
    border-radius: 25px;
    padding: 10px 20px;
    font-size: 15px;
    outline: none;
    transition: 0.2s ease;
}

.info-input:focus {
    border-color: #b00;
}

.info-group .add-more-btn {
    background: none;
    border: none;
    color: #b00;
    font-weight: 600;
    margin-top: 8px;
    padding: 0;
    cursor: pointer;
    transition: 0.2s ease;
}

.info-group .add-more-btn:hover {
    text-decoration: underline;
}

.info-group button.remove-btn {
    border-radius: 100%;
    position: absolute;
    right: 0px;
    font-size: 30px;
    padding: 0px;
    height: 45px;
    width: 45px;
    display: flex;
    align-items: center;
    justify-content: center;
    top: 0px;
}

.info-group .remove-btn:hover {
    background: #900;
}


/* Uploader Image & File */
.upload-box {
    border: 2px dashed #ddd;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.3s;
    position: relative;
    background: #fafafa;
    min-height: 150px;
    display: flex;
    flex-direction: column;
    align-items: center;
    max-height: 350px;
    overflow: auto;
}

.upload-box:hover {
    border-color: #aaa;
    background: #f0f0f0;
}

.upload-box input[type="file"] {
    display: none;
}

.upload-box .upload-content {
    pointer-events: none;
}

.upload-box img.icon {
    width: 30px;
}

.upload-box p {
    margin: 8px 0 0;
    color: #a00;
    font-weight: 500;
}

.upload-box.dragover {
    border: 2px dashed #007cba;
    background: #f0f8ff;
}

.img-preview {
    cursor: grab;
}

.img-preview.dragging {
    opacity: 0.5;
}

.preview-images {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 10px;
    margin-top: 10px;
}

.preview-images .img-preview {
    position: relative;
    width: 90px;
    height: 90px;
    border-radius: 6px;
    overflow: hidden;
    border: 1px solid #ddd;
}

.preview-images .img-preview img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    pointer-events: none;
    user-select: none;
}

.preview-images .delete-btn {
    position: absolute;
    top: 0px;
    right: 0px;
    background: rgb(255 255 255 / 60%);
    color: #fff;
    border: none;
    border-radius: 0px;
    width: 100%;
    height: 100%;
    font-size: 14px;
    line-height: 20px;
    cursor: pointer;
    opacity: 0;
    transition: opacity 0.3s;
}

.delete-btn img {
    width: 70% !important;
    object-fit: contain !important;
}

.preview-images .img-preview:hover .delete-btn {
    opacity: 1;
}


/* Video Uploader */
.video-upload-box {
    border: 2px dashed #ccc;
    background: #fafafa;
    border-radius: 8px;
    padding: 20px;
    text-align: center;
    cursor: pointer;
    transition: all 0.2s ease;
    width: 50%;
}

.video-upload-box:hover {
    border-color: #aaa;
    background: #f0f0f0;
}

.video-upload-box p {
    margin: 8px 0 0;
    color: #a00;
    font-weight: 500;
}

.video-preview {
    display: flex;
    gap: 10px;
    flex-wrap: wrap;
    margin-top: 10px;
}

.video-upload-box input[type="file"] {
    display: none;
}

.video-preview video {
    width: 150px;
    height: 100px;
    border-radius: 8px;
    object-fit: cover;
}

.video-preview-item {
    position: relative;
}

.video-remove-btn {
    position: absolute;
    top: 4px;
    right: 4px;
    background: rgba(0, 0, 0, 0.6);
    border: none;
    color: #fff;
    font-size: 18px;
    cursor: pointer;
    border-radius: 50%;
    width: 24px;
    height: 24px;
    line-height: 22px;
    text-align: center;
    padding: 0px;
}

.video-remove-btn:hover {
    background-color: #a00;
}

.success-message {
    background: #4caf50;
    padding: 20px;
    border-radius: 30px;
    margin-bottom: 20px;
}

.success-message p {
    margin: 0px;
    color: white;
}

.success-message p img.emoji {
    margin-right: 10px !important;
}