.ci-upload-container {
    display: flex;
    flex-direction: column;
}

.ci-text-field-container {
    margin-top: 10px;
    margin-bottom: 10px;
}
.ci-text-field-container label {
    font-size: 16px;
}
.ci-text-filed
{
    width: 100%;
    padding: 10px;
    font-size: 14px;
    border: 1px solid #ccc;
    border-radius: 6px;
    resize: vertical;
    box-sizing: border-box;
    margin-top: 5px;
}
.ci-upload-box {
    background: white;
    padding: 15px;
    border-radius: 5px;
    box-shadow:  0 2px 10px rgba(0, 0, 0, 0.1);
    margin-block: 10px;
}

.ci-upload-header {
    font-size: 16px;
}

.ci-upload-dropzone {
    border: 2px dashed var(--dropzone-border-color);
    padding: 20px;
    text-align: center;
    
    display: flex;
    flex-direction: column;
    align-items: center;
    cursor: pointer;
    border-radius: 5px;
}

.ci-upload-dropzone:hover {
    border-color: var(--dropzone-hover-border-color);
    background: var(--dropzone-hover-color);
  }

.ci-upload-dropzone img {
    width: 40px;
    margin-bottom: 10px;
}

.ci-upload-text {
    text-align: center;
}

.ci-upload-text p {
    margin: 2px 0;
    color: #333;
    font-size: 16px;
}

.ci-upload-text a {
    color: #007bff;
    text-decoration: none;
    font-weight: bold;
}

input[type="file"] {
    display: none;
}

.ci-file-list {
    border: 1px solid #ddd;
    background: #fff;
    border-radius: 5px;
    padding: 8px 10px;
    display: flex;
    align-items: center;
    justify-content: space-between;
    margin-bottom: 10px;
}

.ci-file-info {
    display: flex;
    align-items: center;
    gap: 10px;
}

.ci-file-icon {
    width: 30px;
    height: 30px;
}

.ci-file-preview {
    width: 50px;
    height: 50px;
    object-fit: cover;
    border-radius: 5px;
}

.ci-file-details {
    font-size: 14px;
}

.ci-file-size {
    font-size: 12px;
    color: gray;
}

.ci-delete-btn {
    background: none;
    border: none;
    color: red;
    font-size: 26px;
    cursor: pointer;
}

.ci-loader {
    width: 20px;
    height: 20px;
    border: 2px solid #ccc;
    border-top-color: #333;
    border-radius: 50%;
    animation: spin 0.6s linear infinite;
    background: transparent;
}

@keyframes spin {
    to { transform: rotate(360deg); }
}