.label-area {
        position: relative;
        display: flex;
        justify-content: center;
        align-items: center;
        /* background-color: white; */
         /* background-image: url("/static/images/85.png");
            background-size: 100% 100%;
            background-repeat: no-repeat; */
        min-height: 50vh;
}
.label-background {
    position: relative; /* Makes it easier to position the inside image */
    /* z-index: 20; */
    width: 100%; /* Adjust as needed */
    height: 300px; /* Adjust as needed */
    background-color: rgb(109, 169, 247);
    /* background-image: url("image17.png"); */
    background-repeat: no-repeat;
    background-clip: padding-box;
    background-size: 100% 100%;  
    
}
#label-container {
    display: flex;
    justify-content: center;
    align-items: center;

    width: 500px;
    height: 250px;
    padding: 16px;
    background-color: rgb(109, 169, 247);
}
.inside-color {
    display: none;
    background-color: white;
    transition: background-color 0.3s ease; /* Smooth transition when toggling */
    width: 450px;
    height: 210px;
    border-radius: 10%;
    padding: 15px;

    display: grid;
    grid-template-columns: 120px repeat(3, 1fr);
    grid-template-rows: repeat(6, 1fr);
    gap: 10px;

}
.box {
    /* border-bottom: 1px dashed #000; */

}

.box1 {
    grid-column: 1 / -1;
    display: grid;
    grid-template-columns: 50px 1fr;
    
}
.enter {
    height: 15px;
}
.enter-name {
/* border-bottom: 1px dashed #000; */
}
.box2 {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 35px 1fr;
}
.enter-name {
/* width: 255px; */
    border-bottom: 1px dashed #000;
}
.enter-std {
/* width: 255px; */
    border-bottom: 1px dashed #000;
}
.box3 {
grid-column: 1 / 2;
display: grid;
grid-template-columns: 35px 1fr;
}
.enter-div {
    border-bottom: 1px dashed #000;
}
.box4 {
grid-column: 2 / -1;
display: grid;
grid-template-columns: 65px 1fr;
}
.enter-roll {
    border-bottom: 1px dashed #000;
}
.box5 {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 60px 1fr;
}
.enter-subject {
border-bottom: 1px dashed #000;
margin-left: 4px;
}
.box6 {
grid-column: 1 / -1;
display: grid;
grid-template-columns: 60px 1fr;
}
.enter-school {
border-bottom: 1px dashed #000;
}
.box7 {
    grid-column: 1 / -1;
    border-bottom: 1px dashed #000;
}
 
.title {
font-weight: bold;
}
.inside-image {
    position: relative; /* Absolute positioning within the relative parent */
    width: 100px; /* Adjust size as needed */
    height: 95px; /* Adjust size as needed */
    /* background-image: url("image29.png");   */
    /* background-color: blue; */
    background-repeat: no-repeat;
    background-size: contain; /* Ensure the inside image retains its aspect ratio */
    z-index: 100;
    bottom: 46px;
    left: 460px;
}
.label-controls-config-area {
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 10px;
}
#config-controls {
    display: grid;
    grid-template-columns: 350px repeat(2, 1fr);
    gap: 20px;
}

#label-selection {
    /* background: linear-gradient(to bottom, #87b5f1, white); */
    background-color: white;
    font-family: 'Franklin Gothic Medium', 'Arial Narrow', Arial, sans-serif;
    color: rgb(14, 14, 53);
    font-size: 20px;
    padding: 15px;
}

.label-controls {
  font-family: Arial, sans-serif;
  background-color: #f4f4f9;
  display: flex;
  justify-content: center;
  align-items: center;
  min-height: 100vh;
}

#bginside-color {
    padding: 24px;
}

/*------Media QUery-----------*/


@media(max-width:700px) {
#config-controls {
    display: grid;
    grid-template-columns: 1fr;
    grid-template-rows: auto
}
}



/*----------------------------*/