body{
    margin: 0;
    background-color: rgb(255, 255, 255);
    width: 100%;
    overflow-x: hidden;
}
.header{
    visibility: visible;
    word-wrap: break-word; /* Ensure words wrap to the next line */
}
@media (max-width: 900px) {
    .header {
        width: 50%; /* Adjust the width as needed */
        word-wrap: break-word; /* Ensure words wrap to the next line */
        white-space: normal; /* Allow the text to wrap */
    }
}
.signIn{
    margin-right: 10px;
}
.signIn1{
    margin-right: 40px;
}
.nav {
    display: flex;
    gap: 1rem;
  }
  
  .hamburger {
    display: none;
    flex-direction: column;
    gap: 5px;
    background: none;
    border: none;
    cursor: pointer;
    padding: 10px;
    margin-left: 150px;
    margin-right: 10px;
    box-shadow: none;
  }
  
  .hamburger span {
    width: 25px;
    height: 3px;
    background-color: rgb(0, 0, 0);
    border-radius: 2px;
  }
  
  /* Responsive Design */
  @media (max-width: 900px) {
    .nav {
      display: none; /* Hidden by default */
      flex-direction: column;
      background-color: #ffffff;
      position: absolute;
      top: 10%;
      width: 100%;
      height: 1000%;
      padding: 1rem 0;
    }
  
    .nav.show {
      display: flex; /* Shown when toggled */
      padding-left: 63%;
    }
  
    .hamburger {
      display: flex;
    }
  }
.buttonSign{
    width: 100px;
    height: 35px;
    font-family: 'Courier New', Courier, monospace;
}
.buttonCalc{
    width: 100px;
    height: 35px;
    font-family: 'Courier New', Courier, monospace;
}
.firstPart {
    background-color: rgb(255, 246, 220);
    padding-bottom: 70px;
    padding-top: 10%;
    width: 100%;
    max-width: 100%;
    display: flex;
    justify-content: center;
    flex-direction: row; /* Default: Items in a row */
    flex-wrap: wrap; /* Allows items to wrap to the next row if needed */
    justify-items: center;
    gap: 10px;
    margin-top: 120px;
    border-top: dashed 2px rgb(190, 190, 190);
    border-bottom: dashed 2px rgb(190, 190, 190);
}

@media (max-width: 900px) {
    .firstPart {
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally in column mode */
        gap: 15px; /* Add spacing between stacked items */
        width: 100%;
    }
}


.terms{
    font-size: 20px;
    font-weight: lighter;
    text-align: justify;
}
@media (max-width: 900px) {
    .terms {
        margin-left: 15px;
        text-align: left;
    }
}


.secondPart{
    background-color: rgb(255, 255, 255);
    border-top: #db3434;
}
.beamCalc{
    background-color: rgb(255, 255, 255);
    color:rgb(239, 173, 80);
    font-family: Arial, Helvetica, sans-serif;
    font-size: 35px;
    display: flex;
    align-items: center;
    margin-bottom: 10px;
    margin-left: 20px;
    gap: 20px;
    justify-content: center;
}
.spacer{
    visibility: hidden;
}
.buttonSign{
    background-color: white;
    color: black;
    box-shadow: none;
    border: 2px solid rgb(239, 173, 80);
}
.buttonCalc{
    background-color: rgb(239, 173, 80);
    color: rgb(255, 255, 255);
    box-shadow: none;
}
.beamCalc1{
    border-radius: 5px;
    font-style: italic;
    font-weight: bolder;
    font-size: 30px;
    font-family:'Courier New', Courier, monospace;
    padding-top: 20px;
    padding-bottom: 10px;
    flex-grow: 1;
    display: flex;
    justify-content: left;
    align-items: center;
}
.mainCalc {
    color: rgb(0, 0, 0);
    font-family: 'Courier New', Courier, monospace;
    font-size: large;
    display: flex;
    justify-content: center;
    align-items: center;
    opacity: 100%;
}


.mainCalc1:hover {
    transform: scale(1.01) translateY(-5px); /* Move the div up slightly */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
}
.mainCalc1{
    border-radius: 50px;
    background-color: rgb(255, 255, 255);
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    width: 300px;
    height: 360px;
    font-family: 'Courier New', Courier, monospace;
}
.diagrams{
    border-radius: 50px;
    background-color: rgb(255, 255, 255);
    width: 400px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    height: 360px;
    transition: transform 0.3s ease, box-shadow 0.3s ease
}
@media (max-width: 900px) {
    .diagrams{
        flex-direction: column; /* Stack items vertically */
        align-items: center; /* Center items horizontally in column mode */
        gap: 15px; /* Add spacing between stacked items */
        width: 100%;
    }
}
.diagrams:hover {
    transform: scale(1.01) translateY(-5px); /* Move the div up slightly */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
}
.containDesign{
    width: 170px;
    display: flex;
    flex-direction: column;
    gap: 20px;
    height: 100px;
    padding-right: 10px;
}
.design{
    border-radius: 50px;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    height: 80px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
}
.design:hover {
    transform: scale(1.01) translateY(-5px); /* Move the div up slightly */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
}
.design3{
    border-radius: 50px;
    background-color: rgb(255, 255, 255);
    padding: 10px;
    height: 100px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    display: flex;
    align-content: center;
}
.design3:hover {
    transform: scale(1.01) translateY(-5px); /* Move the div up slightly */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
}
.diag1{
    font-family:'Courier New', Courier, monospace;
    margin-left: 10%;
    margin-top: 5%;
    font-weight: bold;
    display: flex;
    align-items: center;
    gap: 5px;
}
.diag2{
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: flex;
    gap: 5px;
    padding-top: 10px;
}
.diag3{
    background-color: white;
    font-family: Arial, Helvetica, sans-serif;
    font-weight: bold;
    display: flex;
    gap: 5px;
    padding: 20px;
    align-items: center;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    transition: transform 0.3s ease;
    padding-top: 5px;
    padding-bottom: 15px;
    padding-right: 25px;
    height: 60px;
    border-radius: 25px;
    width: 150px;
}
.diag3:hover {
    background-color: white;
    transform: scale(1.01) translateY(-5px); /* Move the div up slightly */
    box-shadow: 0 8px 12px rgba(0, 0, 0, 0.2); /* Enhance the shadow */
}
.circle{
    background-color: #b7b7b7;
    border-radius: 30px;
    width: 20px;
    height: 20px;
}
.circle1{
    background-color: #b7b7b7;
    border-radius: 30px;
    width: 20px;
    height: 20px;
    margin-left: 20px;
}
.circle2{
    background-color: #b7b7b7;
    border-radius: 30px;
    width: 20px;
    height: 20px;
    margin-left: 25px;
    margin-top: 20px;
}
.circle3{
    background-color: #b7b7b7;
    border-radius: 30px;
    width: 20px;
    height: 20px;
    margin-left: 25px;
    margin-right: 5px;
    margin-top: 20px;
}
#beamSolve2{
    width: 50px;
    margin-left: 15px;
}
#beamSolve3{
    width: 50px;
}
#invText{
    visibility: hidden;
}
#invText1{
    visibility: hidden;
}
.shearDiagram{
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    height: 40%;
    margin: 30px;
    padding-right: 10%;
}
#shearDiagram{
    visibility: hidden;
}
#momentDiagram{
    visibility: hidden;
}
#shearText{
    visibility: hidden;
}
input{
    width: 50px;
    border-radius: 5px;
    border: none;
}
input::placeholder{
    color: black;
}
.pText {
    font-size: small;
}
.inputText{
    width: 500px;
}
.divTable{
    background-color: rgb(255, 255, 255);
    border-radius: 10px;
    width: 150px;
    height: 50px;
    align-content: center;
    display: inline-block;
}
button{
    width: 140px;
    height: 40px;
    border-radius: 10px;
    font-family: Arial, Helvetica, sans-serif;
    background-color: rgb(239, 173, 80);
    border: black;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
    color: white;
    font-size: 15px;
    font-weight: bold;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
button:hover{
    background-color: #b7b7b7;
    transform: scale(1.01) translateY(-1px);
}
hr {
    border: 0.1px dashed #ffffff;
    width: 100%;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.3);
    border-bottom: dashed 2px rgb(190, 190, 190);
}
.beamImg{
    width: 340px;
    border-radius: 30px;
    border-color: #ffffff;
    padding-right: 10px;
    padding-bottom: 10px;
}
.calc{
    color: #a67719;
    display: inline;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
    font-size: 30px;
}
.calc1{
    color: #ffffff;
    display: inline;
    font-family: 'Courier New', Courier, monospace;
    font-style: italic;
}
th,td{
    text-align: center;
    vertical-align: middle;
}
.tdDiag{
    width: 340px;
    background-color: white;
}
#tdInput{
    text-align: left;
    padding-left: 20px;
}
#tdInput1{
    text-align: left;
    padding-left: 20px;
}
table{
    table-layout: fixed;
    width: 500px;
}
.bigText{
    font-size: 60px;
    font-family: Arial, Helvetica, sans-serif;
    text-align: center;
}
/*
.under{
    text-decoration: underline;
    text-decoration-color: #a67719;
    text-decoration-thickness: 20px;
    text-underline-offset: -0.01px;
}
*/
.under {
    position:relative;
    color: rgb(226, 190, 46); /* Text color */
}
.under1 {
    color: rgb(226, 190, 46); /* Text color */
    font-family: 'Courier New', Courier, monospace;
    padding-top: 6px;
}
.under::before{
    content: '';
    position: absolute;
    left: 0;
    right: 0;
    bottom: 0;
    height: 2px; /* Thickness of the underline */
    background-color: rgb(226, 190, 46); /* Color of the underline */
    z-index: 1; /* Ensures the underline overlaps the text */
}
#pSecond{
    text-align: center;
    font-size: 20px;
    font-family: 'Courier New', Courier, monospace;
}
#diagramDisplay{
    margin-left: 35%;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 15px;
    font-weight: bold;
}
#beamLoad{
    background-color: #fcf3e1;  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    margin-left: 19.5px;
}
#beamLength{
    background-color: #fcf3e1;  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
#beamSolve{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
#company{
    background-color: #fcf3e1;  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    width: 70px;
    color: #2d2d2d;
    font-size: 9px;
    padding: 2px;
    font-family: 'Courier New', Courier, monospace;
}
#compBy{
    background-color: #fcf3e1;  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    width: 70px;
    color: #2d2d2d;
    margin-left: 9px;
    font-size: 9px;
    padding: 2px;
    font-family: 'Courier New', Courier, monospace;
}
#beamName{
    background-color: #fcf3e1;  
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    width: 70px;
    color: #2d2d2d;
    margin-left: 28.5px;
    font-size: 9px;
    padding: 2px;
    font-family: 'Courier New', Courier, monospace;
}
#loading{
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: #ffffff;
    display: flex;
    justify-content: center;
    align-items: center;
    z-index: 9999;
}
.spinner{
    width: 50px;
    height: 50px;
    border: 5px solid #ccc;
    border-top: 5px solid #3498db;
    border-radius: 50%;
}

#all{
    display: none;
    padding-top: 1%;
}
.aaesLogo{
    width: 50px;
}
.tdLearn{
    width: 100px;
    margin-left: 45%;
}
.input{
    display: flex;
    gap: 10px;
    padding-top: 15px;
    font-family:'Courier New', Courier, monospace;
    font-weight: bold;
    align-items: center;
}
.containBig{
    display: flex;
    justify-content: center;
    height: 2500px;
    border: #3498db;
}
@media (max-width: 900px) {
    .containBig {
    height: 3800px;
    padding-bottom: 50px;
    }
}


.container{
    height: 150px;
    width: 1000px;
    font-family: Arial, Helvetica, sans-serif;
    font-size: 40px;
    color: #534217;
    text-align: center;
    margin-top: 50px;
    font-weight: bolder;
    padding-bottom: 30px;
    margin-bottom: 20px;
    background-color: #ffffff;
}
@media (max-width: 1000px) {
    .container {
        padding-right: 20px;
    }
  }
.parent{
    display: flex;
    justify-content: center;
}
.containerChild{
    text-align: center;
    width: 50%;
    flex-direction: row;
    height: 120px;
    margin-right: 100px;
}
@media (max-width: 900px) {
    .containerChild {
        text-align: left;
        width: 350px;
    }
  }
.arrow{
    height: 250px;
    width: 160px;
}
@media (max-width: 900px) {
    .arrow {
        visibility: hidden;
    }
  }
.secondChild{
    background-color: #ffffff;
    flex-grow: 1;
    height: 120px;
}
.secondTo{
    color: #4f4f4f;
    font-size: 20px;
    font-weight: lighter;
    text-align: justify;
    margin-left: 10px;
}
.model{
    background-color: #fff3dc;
    border-radius: 20px;
}
.options{
    border-radius: 15px;
    background-color: #fcf3e1;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
    padding: 2px;
    border: none;
}
.canvas{
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.5);
}
#unlock{
    visibility:visible;
    background-color: rgba(0, 0, 0, 0.5);
    color: white;
}
#bcLogo{
    width: 50px;
}
.logo{
    width: 80px;
}
/*---For Profile Styling---*/
#profileImage{
    width: 35px;
    border-radius: 10px;
    border: rgb(239, 173, 80) 2.5px solid;
    margin-top: 7px;
}
.profile-menu {
    position: relative;
    display: inline-block;
}

/*.profile-pic {
    width: 50px;
    height: 50px;
    border-radius: 50%;
    cursor: pointer;
}*/
.dropdown-menu {
    display: none;
    position: absolute;
    right: 0;
    background-color: #fff;
    box-shadow: 0px 8px 16px rgba(0, 0, 0, 0.2);
    border-radius: 5px;
    overflow: hidden;
    z-index: 1;
}

.dropdown-menu a {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: #333;
    transition: background-color 0.2s ease;
    font-size: 15px;
}

.dropdown-menu a:hover {
    background-color: #f0f0f0;
}

.dropdown-menu a.delete {
    color: #e74c3c;
}

.dropdown-menu a.delete:hover {
    background-color: #f8d7da;
}
/*------------------------------------------------------------------*/
.htext{
    display: inline-block; /* Ensures the text can be rotated */
    transform: rotate(-7deg); /* Adjust the angle as needed */
    transform-origin: left bottom; /* Defines the rotation point */
    font-size: 20px;
    font-family:'Courier New', Courier, monospace;
    color: #4f4f4f;
    margin-left: 50%;
}
@media (max-width: 900px) {
    .htext {
        padding-right: 60px;
    }
  }
#rollDown{
    color: white;
    font-family: 'Courier New', Courier, monospace;
    margin-top: 20px;
    font-size: large;
    width: 150px;
}
@media (max-width: 900px) {
    #rollDown {
        margin-left: 80px;
    }
  }


  .aboutDiv {
    display: none; /* Initially hidden */
    flex-direction: column; /* Ensure items stack vertically */
}

.aboutDiv.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
    z-index: 1000; /* Ensures it's on top of other elements */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Align items at the top of the container */
    overflow-y: auto; /* Enable scrolling for the entire div */
    padding: 20px; /* Add padding to ensure content isn't flush against the edges */
    box-sizing: border-box; /* Include padding in height calculations */
}

/* Style for the close button inside the modal */
.aboutDiv .close1 {
    position: absolute;
    top: 10px; /* Position at the top-right */
    right: 20px;
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: bold;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010; /* Ensure it's above other modal content */
}

/* Optional: Add transition for smoother appearance */
.aboutDiv.active {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.ab1 {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Remove this shadow on print */
    position: relative;
    max-width: 600px; /* Adjusted for larger content */
    width: 40%; /* Responsive */
    height: 50%;
    text-align: center;
    overflow: hidden; /* Prevents content overflow */
    margin-bottom: 20px; /* Add spacing between items if multiple */
    align-content: center;
}



.aboutDiv2 {
    display: none; /* Initially hidden */
    flex-direction: column; /* Ensure items stack vertically */
}

.aboutDiv2.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
    z-index: 1000; /* Ensures it's on top of other elements */
    justify-content: center; /* Center items horizontally */
    align-items: center; /* Align items at the top of the container */
    overflow-y: auto; /* Enable scrolling for the entire div */
    padding: 20px; /* Add padding to ensure content isn't flush against the edges */
    box-sizing: border-box; /* Include padding in height calculations */
}

/* Style for the close button inside the modal */
.aboutDiv2 .close2 {
    position: absolute;
    top: 10px; /* Position at the top-right */
    right: 20px;
    color: rgb(0, 0, 0);
    font-size: 24px;
    font-weight: bold;
    background: transparent;
    border: none;
    cursor: pointer;
    z-index: 1010; /* Ensure it's above other modal content */
}

/* Optional: Add transition for smoother appearance */
.aboutDiv2.active {
    animation: fadeIn 0.3s ease-out;
}

@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}
.ab2 {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Remove this shadow on print */
    position: relative;
    max-width: 600px; /* Adjusted for larger content */
    width: 40%; /* Responsive */
    height: 30%;
    text-align: center;
    overflow: hidden; /* Prevents content overflow */
    margin-bottom: 20px; /* Add spacing between items if multiple */
    align-content: center;
}






















.reportView {
    display: none; /* Initially hidden */
}

.reportView.active {
    display: flex;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5); /* Transparent black background */
    z-index: 1000; /* Ensures it's on top of other elements */
    justify-content: center;
    align-items: flex-start; /* Align items at the top of the container */
    overflow-y: auto; /* Enable scrolling for the entire div */
    padding: 20px; /* Add padding to ensure content isn't flush against the edges */
    box-sizing: border-box; /* Include padding in height calculations */
}

.report1 {
    background-color: white;
    padding: 20px;
    border-radius: 8px;
    box-shadow: 0px 4px 10px rgba(0, 0, 0, 0.2); /* Remove this shadow on print */
    position: relative;
    max-width: 600px; /* Adjusted for larger content */
    width: 100%; /* Responsive */
    text-align: center;
    overflow: hidden; /* Prevents content overflow */
    margin-bottom: 20px; /* Add spacing between items if multiple */
}


.report1 img {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
    margin-bottom: 20px;
}

.report1 .button-container {
    margin-top: 20px;
    text-align: center;
}

.report1 .shearDiag {
    max-width: 100%; /* Ensure images are responsive */
    height: auto;
}

.report1 .reportStyle {
    font-size: 16px;
    margin: 10px 0;
    line-height: 1.5;
}

.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
@media print {
    body * {
        visibility: hidden; /* Hide everything else on the page */
    }

    .reportView, .reportView * {
        visibility: visible; /* Ensure the .reportView and its contents are visible */
    }

    .reportView {
        position: absolute; /* Fixes the position for printing */
        top: 0;
        left: 0;
        width: 100%;
        height: 100%; /* Ensure the div takes the full page */
        background-color: white; /* Make sure the background is white for printing */
        padding: 20px; /* Add some padding to avoid content being too close to the edges */
        box-sizing: border-box;
        overflow: visible; /* Prevent overflow issues */
    }

    .report1 {
        width: auto;
        max-width: 100%; /* Ensure it's not constrained during printing */
        height: auto;
        padding: 20px;
        text-align: left; /* Align text left for better readability on print */
        margin: 0;
        box-shadow: none; /* Remove box shadow during printing */
        page-break-inside: avoid; /* Prevent content from splitting across pages */
        max-height: 100%; /* Make sure it doesn't exceed the printable area */
    }

    /*.report1 img {
        max-width: 100%; /* Uniform width for Chart.js images */
       /* margin-bottom: 20px;
    }*/

    /*.report1 .model {
        max-width: 800px; /* Same width as Chart.js images */
        /*width: 100%;  Ensure it's responsive 
        height: auto;
        margin-bottom: 20px;
    }*/

    .close {
        display: none; /* Hide the close button during printing */
    }

    /* Prevent page breaks in content */
    .reportView, .report1 {
        page-break-inside: avoid;
    }
}
@media print {
    /* Hide scrollbars */
    ::-webkit-scrollbar {
        display: none; /* For WebKit-based browsers */
    }
    body {
        -ms-overflow-style: none; /* For Internet Explorer and Edge */
        scrollbar-width: none; /* For Firefox */
    }
    header, footer {
        display: none; /* Hide any custom headers and footers */
    }
}

@media screen and (max-width: 768px) {
    .report1 {
        width: 90%; /* Adjust the width on smaller screens */
        padding: 10px; /* Reduce padding to fit content */
    }

    .report1 img {
        max-width: 100%; /* Ensure images take up full container width */
    }
}
.shearDD{
    display: flex;
    justify-content: center;
}
.shearDiag{
    width: 300px;
    height: 300px;
    align-items: center;
    margin-right: 52px;
}
.momentDD{
    display: flex;
    justify-content: center;
}
.momentDiag{
    width: 300px;
    height: 300px;
    align-items: center;
    margin-right: 52px;
}








.close {
    position: absolute;
    top: 10px;
    right: 15px;
    font-size: 20px;
    cursor: pointer;
}
.reportStyle{
    font-family: 'Courier New', Courier, monospace;
    text-align: left;
}
.image-placeholder {
    width: 50px; /* Set placeholder width */
    height: 50px; /* Set placeholder height */
    display: flex;
    padding-top: 20px;
    justify-content: center;
    align-items: center;
    overflow: hidden; /* Ensure uploaded image fits within the placeholder */
    position: relative;
    background-color: #ffffff; /* Light background color */
}

.image-placeholder img {
    max-width: 100%;
    max-height: 100%;
    object-fit: cover; /* Ensure the image fits within the placeholder */
}

.image-placeholder label {
    position: absolute;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    font-size: 16px;
    color: #999;
    pointer-events: none; /* Allow the file input to trigger on click */
}

.file-input {
    display: none; /* Hide the file input */
}