/* Edit Page Container */

.edit-page{
    padding-top:80px;
    padding-bottom:35px;
}
.edit-container{
    max-width: 950px;
    margin-top:40px;
    margin-left:auto;
    margin-right:auto;
    padding: 30px;
    background: white;
    border-radius: 20px;
    box-shadow: 0 8px 30px rgba(0,0,0,0.08);
}

/* Heading */

.edit-container h3{
    font-weight: 600;
    margin-bottom: 25px;
}

/* Gallery */

.listing-gallery{
    margin-bottom: 30px;
}

.main-image img{
    width: 100%;
    height: 420px;
    object-fit: cover;
    border-radius: 15px;
}

/* Thumbnails */

.thumbnail-container{
    display: flex;
    gap: 10px;
    margin-top: 10px;
}

.thumbnail{
    width: 23.6%;
    height: 90px;
    object-fit: cover;
    border-radius: 10px;
    cursor: pointer;
    transition: transform 0.2s;
}

.thumbnail:hover{
    transform: scale(1.05);
}

/* Inputs */

.form-control{
    border-radius: 10px;
    padding: 10px;
}

/* Location input */

input[name="listing[location]"]{
    width: 100%;
    border: 1px solid #ced4da;
    border-radius: 10px;
    padding: 10px;
}

/* Button */

.edit-btn{
    background-color: #ff385c;
    border: none;
    padding: 10px 22px;
    border-radius: 8px;
    font-weight: 500;
}

.edit-btn:hover{
    background-color: #e03150;
}

/* dark theme */
.theme-dark .edit-page{
    background-color:#1c1c1c;
}

.theme-dark .edit-container{
    background: #1c1c1c;
    box-shadow: 0 8px 30px rgba(0,0,0,0.6);
}

.theme-dark .edit-container h3{
    color: #ffffff;
}

.theme-dark .main-image img{
    filter: brightness(0.9);
}

.theme-dark .form-control{
    background-color: #242424;
    color: #ffffff;
    border: 1px solid #3a3a3a;
}

.theme-dark .form-control::placeholder{
    color: #888;
}

.theme-dark input[name="listing[location]"]{
    background-color: #242424;
    color: #ffffff;
    border: 1px solid #3a3a3a;
}

.theme-dark .form-control:focus,
.theme-dark input[name="listing[location]"]:focus{
    background-color: #2a2a2a;
    border-color: #ffffff;
    color: #ffffff;
    box-shadow: 0 0 0 2px rgba(255,255,255,0.1);
}

.theme-dark .edit-btn{
    background-color: #ff385c;
    color: #ffffff;
}

.theme-dark .edit-btn:hover{
    background-color: #e03150;
}