/*Image upload view*/
.ig-upload-modal__container {
    display: flex;
    flex-direction: column;
    height: 600px;
    width: 650px;
    background-color: white;
    border-radius: 10px;
}

.ig-upload-modal {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.6);
    justify-content: center;
    align-items: center;
    z-index: 9999;
    font-family: var(--heading-font-family), sans-serif;
}

/* when active */
.ig-upload-modal.show {
    display: flex;
}

.ig-upload-modal-content {
    display: flex;
    flex-direction: row;
}

/*Left*/
.ig-upload-modal-left {
    display: flex;
    flex-direction: column;
    margin-top: 125px;
    margin-left: 15px;
    height: 250px;
    width: 250px;
    background-color: #e5e7eb;
    border-radius: 10px;
    overflow: hidden;
    align-items: center;
    justify-content: center;
}

.ig-upload-modal-left-content {
    color: #2770d4;
    font-weight: bold;
}

.ig-upload-modal-form-group a {
    color: #2770d4;
}

#selected-file {
    margin-left: 20px;
    margin-right: 20px;
    width: 250px;
    overflow: hidden;
    align-items: center;
    padding: 20px;
    justify-content: center;
}

.left_text {
    padding-bottom: 20px;
    text-align: center;
}

.fa-regular {
    font-size: 30px;
    padding-bottom: 30px;
}

.file-input {
    position: absolute;
    width: 1px;
    height: 1px;
    padding: 0;
    margin: -1px;
    overflow: hidden;
    clip: rect(0, 0, 0, 0);
    white-space: nowrap;
    border: 0;
}

.ig-upload-browse-btn {
    background: none;
    border: none;
    color: #2770d4;
    font-weight: bold;
    text-decoration: underline;
    cursor: pointer;
}

/*Right*/
#close-upload-modal {
    float: right;
    background-color: white;
    margin-top: 20px;
    margin-left: 600px;
    border: none;
}

.ig-upload-modal-right {
    width: 400;
    overflow: hidden;
    display: flex;
    flex-direction: column;
}

.ig-upload-modal-content-pane h2 {
    margin-bottom: 5px;
}

.ig-upload-modal-form-group {
    display: flex;
    flex-direction: column;
}

.ig-upload-modal-right input,
.ig-upload-modal-right textarea,
.ig-upload-modal-right select {
    background-color: #e7e7e7;
}

.input-group {
    position: relative;
    margin: 5px 0px 10px 0px;
}

.input-group label {
    position: absolute;
    left: 10px;
    top: 12px;
    color: #777;
    pointer-events: none;
    transition: 0.2s ease all;
}

.ig-upload-modal-form-group i {
    transform: translateY(-60%);
    margin-left: 450px;
    position: absolute;
    right: 12px;
    top: 35%;
    color: #777;
    pointer-events: none;
}

.multiple_collections {
    display: none;
    position: absolute;
    width: 100%;
    max-height: 200px;
    padding-left: 10px;
    overflow-y: auto;
    background: white;
    border: 1px solid #ddd;
    z-index: 999;
    box-shadow: 0 4px 10px rgba(0, 0, 0, 0.1);
}

/* show dropdown */
.multiple_collections.active {
    display: block;
}

/* optional styling for select */
.multiple_collections select {
    width: 100%;
    border: none;
    outline: none;
}


.ig-upload-modal-right button[type="submit"] {
    width: 100%;
    padding: 12px;
    background: var(--side-nav-bg-color);
    border: none;
    color: white;
    border-radius: 8px;
    cursor: pointer;
    margin-top: 10px;
}

.visibility-group {
    width: 400px;
    padding: 16px 20px;
    background-color: #e7e7e7;
    border-radius: 12px;
    margin-top: 10px;
    display: flex;
    flex-direction: column;
    gap: 12px;
    align-items: flex-start;
}

.visibility-title {
    font-size: 16px;
    color: #555;
}

.visibility-options {
    display: flex;
    gap: 32px; /* space between Public / Private */
}

.visibility-option {
    display: flex;
    align-items: center;
    gap: 8px;

    font-size: 14px;
    color: #444;
    cursor: pointer;
}

/* Optional: nicer radio look */
.visibility-option input[type="radio"] {
    accent-color: #666;
    cursor: pointer;
}

::placeholder {
    color: #666666;
}

.ig-upload-modal-label {
    padding: 0px;
    color: #666666;

}

.ig-upload-modal-help-text {
    color: #000000;
}