/*# sourceMappingURL=data:application/json;charset=utf8;base64,eyJ2ZXJzaW9uIjozLCJmaWxlIjoiY3VzdG9tLmNzcyIsInNvdXJjZXMiOlsiY3VzdG9tLnNjc3MiXSwibmFtZXMiOltdLCJtYXBwaW5ncyI6IiJ9 */

/*# sourceMappingURL=custom.css.map */
.logged-in-user {
    color: black;
    float: right;
    margin-left: 10px;
}
.toast-container {
    position: fixed;
    top: 20px;
    right: 20px;
    z-index: 1050;
}

.toast {
    min-width: 250px;
    box-shadow: 0px 4px 8px rgba(0, 0, 0, 0.2);
    border-radius: 8px;
}

.toast-header {
    font-weight: bold;
}

.toast-body {
    font-size: 14px;
}

#admin-copyright {
    float: right;
}
#header-title{
    color: #ff4500;
    font-size: 25px;
    background-color: lightgrey;
    text-align: center;
    margin-top: -70px;
}
#header-login{
    color: #ff4500;
    font-size: 25px;
    margin-top: -65px;
    margin-left: 180px;
}

.card-header{
    height: 100px;
}
#applicant_details {
    margin-left: 10px;
}
#customer_details{
    color: red;
    size: 20px;
    text-align: center;
}

#applicant-name {
    color: red;
    size: 20px;
}
.right-sec{
    float: right;
    margin-top: 10px;
    margin-right: 100px;
    display: block;
}
.left-sec{
    float: left;
    display: block;
}
#control {
    width: 100%; /* Make inputs responsive */
    max-width: 400px; /* Set max width for larger screens */
    height: 40px;
    border: none;
    padding: 10px;
    margin-bottom: 15px; /* Space between fields */
    background: white;
    box-sizing: border-box; /* Include padding and border in width calculation */
}

label {
    font-size: 14px;
    color: black;
    margin-left: 10px;
    font-weight: bold;
}

.right-sec {
    margin-top: 10px;
    margin-right: 100px;
    display: block;
}

.left-sec {
    display: block;
}

.basic-info {
    text-align: center;
    margin-top: 10px;
}

/* Cover letter styling */
.cover_letter {
    height: auto; /* Adjust height based on content */
    width: 100%; /* Full width to make it responsive */
    max-width: 600px; /* Limit max width */
    background: white;
    border: 1px solid #ccc; /* Optional border */
    padding: 10px;
    box-sizing: border-box;
    white-space: pre-wrap; /* Preserve line breaks */
    overflow-wrap: break-word; /* Handle long words */
}

/* Responsive Styles for smaller screens */
@media (max-width: 768px) {
    .cover_letter {
        width: 100%; /* Full width on smaller screens */
        max-width: 100%; /* Remove max width */
        font-size: 14px; /* Adjust font size */
    }
    .form-control {
        width: 100%; /* Ensure form inputs take full width */
        max-width: 100%;
    }
}

@media (max-width: 480px) {
    .cover_letter {
        width: 100%; /* Full width on very small screens */
        font-size: 12px; /* Reduce font size */
    }
    .form-control {
        font-size: 12px; /* Adjust font size for inputs */
        padding: 8px; /* Adjust padding */
    }
}
.btn-right {
    padding-bottom: 10px;
    display: flex;
    flex-direction: row;
    gap: 10px;
    justify-content: flex-end; /* Aligns items to the right */
    align-items: center; /* Vertically center the items */
  }
  
.btn-right i{
    color: black;
}
.btn-right :hover{
    color: none;
}
.view-action {
    display: inline-flex;
    align-items: center;
    padding: 8px 12px;
    font-size: 14px;
    border-radius: 4px;
    text-decoration: none;
    transition: background-color 0.3s ease, color 0.3s ease;
  }
  
  .view-action:hover {
    text-decoration: none;
  }
  
  .view-action i {
    margin-right: 5px;
  }
  .section{
    top: -50px;
  }
  #submit{
    width: fit-content;
  }
  .view-action, .edit-action {
    text-decoration: none;
    margin-right: 10px;
    color: #007bff; /* Blue color */
}

.view-action:hover, .edit-action:hover {
    color: #0056b3;
}

.fas {
    margin-right: 5px;
}
/* price css */
/* Two-column layout for the form */
.price-section {
    display: grid !important;
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    max-width: 600px !important;
    margin: auto !important;
}


/* Ensure form fields take full width inside grid */
.price-section .form-group {
    display: flex;
    flex-direction: column;
}

/* Responsive: One column on small screens */
@media (max-width: 480px) {
    .price-section {
        grid-template-columns: 1fr;
    }
}

/* promo price start */
/* Two-column layout for the form */
.promo {
    grid-template-columns: repeat(2, 1fr) !important;
    gap: 15px !important;
    max-width: 600px !important;
    margin: auto !important;
}


/* Ensure form fields take full width inside grid */
.promo .form-group {
    display: flex;
    flex-direction: column;
}

/* Responsive: One column on small screens */
@media (max-width: 480px) {
    .promo {
        grid-template-columns: 1fr;
    }
}
/* promoo price end */

/* end of price css */
/* image selection start */
#image-preview-container {
    display: flex;
    flex-direction: column;
    align-items: center;
    gap: 10px;
}

#main-image-container .image-wrapper {
    position: relative;
    width: 200px;
    height: 200px;
    cursor: pointer;
}

#main-image-container .main-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 2px solid #007bff;
}

#secondary-images-container {
    display: flex;
    gap: 10px;
}

#secondary-images-container .image-wrapper {
    position: relative;
    width: 100px;
    height: 100px;
    cursor: pointer;
}

#secondary-images-container .secondary-image {
    width: 100%;
    height: 100%;
    object-fit: cover;
    border-radius: 10px;
    border: 1px solid #ddd;
}

.image-wrapper {
    position: relative;
}

.image-wrapper.dragging {
    opacity: 0.5;
}

.remove-btn {
    position: absolute;
    top: 5px;
    right: 5px;
    background: red;
    color: white;
    border-radius: 50%;
    width: 20px;
    height: 20px;
    display: flex;
    justify-content: center;
    align-items: center;
    cursor: pointer;
    font-weight: bold;
}

/* image selection end here */