*{
    margin: 0;
    padding: 0;
}
.head-container{
    background-color: #0d2140;
    padding: 10px 10px;
    border-bottom-left-radius: 20px;
    border-bottom-right-radius: 20px;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    position: sticky;
    top: 0;
    z-index: 9999;
}
.head-container .logo{
    width: 70%;
    display: block;
    margin: 0 auto;
}
.main-title{
    text-align: center;
    margin-top: 20px;
    position: relative;
}
.main-title::after{
    content: '';
    width: 100px;
    height: 2px;
    background-color: #0d2140;
    position: absolute;
    bottom:-10px;
    left: calc(50% - 50px); 
    border-radius: 10px;
}

.main-title::before{
    content: '';
    width: 50px;
    height: 2px;
    background-color: #0d2140;
    position: absolute;
    bottom:-15px;
    left: calc(50% - 25px); 
    border-radius: 10px;
}
.comment-input{
    width: calc(100% - 20px);
    border-radius: 10px;
    padding: 10px;
    margin-top: 20px;
    box-shadow: rgba(244, 120, 42, 0.35) 0px 5px 15px;
    border-color: #f4782a;
    /* background-color: #f2f2f2; */
    /* transition: 1s; */
}
.comment-input:focus{
    outline: none;
    /* border-width: 2px; */

}
.browse-btn {
    margin: 15px;
    background: #0d2140;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: bold;
    width: calc(100% - 30px);
}





.overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0,0,0,0.4);
    display: none;
    z-index: 99;
}

.sheet {
    position: fixed;
    bottom: -300px;
    left: 0;
    width: 100%;
    background: #fff;
    border-top-left-radius: 18px;
    border-top-right-radius: 18px;
    padding: 20px;
    transition: 0.3s ease;
    z-index: 100;
}

.sheet.active {
    bottom: 0;
}

.overlay.active {
    display: block;
}

/* options */
.option {
    display: flex;
    align-items: center;
    gap: 10px;
    padding: 14px;
    border-radius: 12px;
    margin-top: 10px;
    border: 1px solid #eee;
    cursor: pointer;
}

.option:hover {
    background: #fff3ec;
    border-color: #f4782A;
}

.icon {
    font-size: 20px;
}

.preview {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    margin-top: 15px;
    margin-left: 20px;
}

.preview-item {
    position: relative;
    width: 80px;
    height: 80px;
}

.preview-img {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 12px;
    border: 2px solid #f4782A;
    box-shadow: rgba(244, 120, 42, 0.25) 0px 5px 15px;
}

/* ❌ remove button */
.remove-btn {
    position: absolute;
    top: -6px;
    right: -6px;
    width: 20px;
    height: 20px;
    background: #f4782A;
    color: white;
    border-radius: 50%;
    font-size: 12px;
    display: flex;
    align-items: center;
    justify-content: center;
    cursor: pointer;
    box-shadow: rgba(0,0,0,0.2) 0px 3px 8px;
}
.submit-button{
    position: fixed;
    bottom: 0;
    width: calc(100% - 30px);

     margin: 15px;
    background: #0d2140;
    color: #fff;
    border: none;
    padding: 12px 16px;
    border-radius: 12px;
    font-weight: bold;
    width: calc(100% - 30px);
    left:0px;
    box-shadow: rgba(0, 0, 0, 0.3) 0px 19px 38px, rgba(0, 0, 0, 0.22) 0px 15px 12px;
}