
.col {
    background-color: #ffb65c;
    border-radius: 15px 15px 15px 15px;
}
.list-group-mine .list-group-item {
    border-color:red;
    border: 1px solid red;
}
.toggle{
    position: absolute;
    top: 80px;
    right: 30px;
}
.toggle input[type='checkbox'] {
    display: none;
}

.toggle label {
    background-color: #777;
    border: 2px solid #555;
    border-radius: 37.5px;
    cursor: pointer;
    display: inline-block;
    position: relative;
    
    transition: all ease-in-out 0.3s;
    width: 75px;
    height: 37.5px;
}
.toggle label::after {
    background-color: #555;
    border-radius: 50%;
    content: ' ';
    cursor: pointer;
    display: inline-block;
    position: absolute;
    left: 2px;
    top: 2px;
    transition: all ease-in-out 0.3s;
    width: 31.5px;
    height: 31.5px;
}
.toggle input[type='checkbox']:checked ~ label {
    background-color: #ffffff;
    border-color: #736868;
}

.toggle input[type='checkbox']:checked ~ label::after {
    background-color: #cddbe9;
    transform: translateX(37.5px);
}

body {
    background-color: #f5f7fa;
}
body.dark-theme {
    background-color: #333;
}



#dark-mode{
    position: absolute;
    top: 110px;
    right: 0px;
	width:120px;
	height:auto;
	margin:10px;
	padding:0px;
    border: 5px solid #ffb65c;
    border-radius: 25px;

    background: #EBEBF2;
}


.image-txt-container {
    display:flex;
    align-items:center;
    flex-direction: row;
    gap: 10px;
    flex: 0 0 auto;
    
  }

  .image-txt-container-inside {
    display:flex;
    align-items:center;
    flex-direction: column;
    
  }
  .parent {
    display: grid;
    grid-template-columns: 0.5fr 1fr;
    grid-template-rows: repeat(3, 1fr);
    grid-column-gap: 0px;
    grid-row-gap: 0px;
    }
    
    .div1 { grid-area: 1 / 1 / 2 / 2; }
    .div2 { grid-area: 2 / 1 / 3 / 2; }
    .div3 { grid-area: 3 / 1 / 4 / 2; }
    .div4 { grid-area: 3 / 2 / 4 / 3; }
    .div5 { grid-area: 2 / 2 / 3 / 3; }
    .div6 { grid-area: 1 / 2 / 2 / 3; }


