.custom-button {
    display: inline-block;
    padding: 10px 20px;
    font-size: 14px;
    font-weight: 500;
    text-align: center;
    text-decoration: none;
    cursor: pointer;
    border-radius: 10px;
    background-color: #175386;
    color: #ffffff;
    transition: background-color 0.3s ease-in-out;
    border: none;
}

.custom-button:hover {
    color: #ffffff;
    background-color: #1d6aac;
}

.custom-button:focus {
    outline: none;
}

.helpdesk-from {
    width: 500px;
}

@media only screen and (max-width: 500px) {
    .helpdesk-from {
        min-width: auto;
        width: 100%;
    }
}

.dropzone-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    width: 100%;
    border: 2px solid #CBD5E0;
    border-style: dashed;
    border-radius: 0.375rem;
    cursor: pointer;
    transition: background-color 0.3s ease, border-color 0.3s ease;
    margin-bottom: 0.25rem;
}

#dropzone.highlight {
    background-color: #F7FAFC;
}

.dropzone-container:hover {
    background-color: #F7FAFC;
}

.dropzone-icon {
    width: 2rem;
    height: 2rem;
    margin-top: 1rem;
}

.dropzone-title {
    margin-bottom: 0.5rem;
    font-size: 0.875rem;
    color: #718096;
}

.dropzone-sub-title {
    font-size: 0.75rem;
    color: #718096;
}

.file-item {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

.file-item:not(:last-child) {
    border-bottom: dashed 1px #CBD5E0;
}

.file-icon {
    width: 1rem;
    margin-right: 0.25rem
}

.file-name {
    flex-grow: 1;
    overflow: hidden;
    text-overflow: ellipsis;
    white-space: nowrap;
}

.remove-button {
    padding: 10px 10px;
    background-color: white;
    border: none;
    position: relative;
    overflow: hidden;
}

.remove-button::before,
.remove-button::after {
    content: '';
    position: absolute;
    width: 2px;
    height: 0.75rem;
    background-color: red;
    top: 50%;
    left: 50%;
}

.remove-button::before {
    transform: translate(-50%, -50%) rotate(45deg);
}

.remove-button::after {
    transform: translate(-50%, -50%) rotate(-45deg);
}

.ql-container {
    font-family: inherit;
    border-radius: 0 0 0.25rem 0.25rem
}

.ql-toolbar {
    border-radius: 0.25rem 0.25rem 0 0;
}

.ql-editor {
    min-height: 100px;
    margin: 0;
    padding: 0.375rem 0.75rem;
    font-size: 1rem;
    font-weight: 400;
    line-height: 1.42;
    color: #212529;
    resize: vertical;
}

    .ql-editor ol {
        padding-left: 0.75em;
    }