
.publicationform__container {
    width: 85%;
}

.publicationform__container--form {
    width: 100%;
}

.publicationform__container--form__content {
    display: grid;
    grid-template-columns: 1fr 2fr;
    gap: 20px;
    width: 100%;
}

/* .publicationform__container--form__btns {
    display: flex;
    align-items: center;
    justify-content: center;
} */

.form__group {
    margin-bottom: 0.8rem;
}

.form__group--label {
    display: block;
    margin-bottom: 0.5rem;
    font-size: 14px;
    font-weight: 600;
    color: #374151;
}

.form__group--label.required::after {
    content: " *";
    color: #dc2626;
}

.form__control {
    width: 100%;
    padding: 0.55rem;
    border: 1px solid #d1d5db;
    border-radius: 0;
    font-size: 14px;
    transition: border-color 0.15s ease-in-out, box-shadow 0.15s ease-in-out;
}

.form__control:focus {
    outline: none;
    border-color: var(--brand-color);
    box-shadow: 0 0 0 3px rgba(59, 130, 246, 0.1);
}

.autocomplete-container {
    position: relative;
}

.autocomplete-suggestions {
    position: absolute;
    top: 100%;
    left: 0;
    right: 0;
    background: white;
    border: 1px solid #d1d5db;
    border-top: none;
    border-radius: 0 0 0.375rem 0.375rem;
    max-height: 200px;
    overflow-y: auto;
    z-index: 1000;
    display: none;
}

.autocomplete-suggestion {
    padding: 0.75rem;
    cursor: pointer;
    border-bottom: 1px solid #f3f4f6;
}

.autocomplete-suggestion:hover {
    background-color: #f9fafb;
}

.autocomplete-suggestion:last-child {
    border-bottom: none;
}

.selected-items {
    margin-top: 0.5rem;
    display: flex;
    flex-wrap: wrap;
    gap: 0.5rem;
}

.selected-item {
    display: inline-flex;
    align-items: center;
    background-color: #e5e7eb;
    color: #374151;
    padding: 0.25rem 0.5rem;
    border-radius: 9999px;
    font-size: 0.875rem;
}

.selected-item-remove {
    margin-left: 0.5rem;
    background: none;
    border: none;
    color: #6b7280;
    cursor: pointer;
    font-size: 1rem;
    line-height: 1;
}

.selected-item-remove:hover {
    color: #dc2626;
}

.file-upload {
    border: 2px dashed #d1d5db;
    border-radius: 0.5rem;
    padding: 2rem;
    text-align: center;
    transition: border-color 0.15s ease-in-out;
}

.file-upload:hover {
    border-color: #3b82f6;
}

.file-upload-label {
    cursor: pointer;
    color: #6b7280;
}

.file-info {
    font-size: 0.875rem;
    margin-top: 0.5rem;
}

.publicationform__container--form__btns {
    width: 100%;
    display: flex;
    align-items: center;
    justify-content: flex-end;
}

.btn {
    padding: 0.75rem 1.5rem;
    border: none;
    border-radius: 888px;
    font-size: 1rem;
    cursor: pointer;
    text-decoration: none;
    display: inline-block;
    margin-right: 0.5rem;
}

.btn-primary {
    background-color: var(--brand-color);
    color: white;
}

.btn-secondary {
    /* background-color: #6b7280; */
    color: var(--black);
}

.form-text {
    font-size: 0.8rem;
    color: #6b7280;
    margin-top: 0.2rem;
}

.no-results {
    padding: 0.75rem;
    color: #6b7280;
    font-style: italic;
}


