.boxgroup{
    display: flex;
flex-direction: column;
flex-wrap: nowrap;
padding: 0.5rem;
}
.boxitem {
  /* display: flex;
  width: 500px;
  height: 100px;
  /* border: 2px solid #a1adc6; */
  /* border-bottom: 3px solid #899dc2;
  box-shadow: 0 2px 2px rgba(0,0,0,0.1);
  margin: 1rem auto;
  overflow: hidden; */ 
display: flex;
margin-top: 10px;
border: 2px solid #a1adc6;
border-bottom: 3px solid #899dc2;
box-shadow: 0 2px 2px rgba(0, 0, 0, 0.1);

}

.boxicon-box {
  width: 100px;
  height: 100px;
  background-color: #889dc8; /* darker shade */
  display: flex;
  align-items: center;
  justify-content: center;
}

.boxicon-box img {
  width: 40px;
  height: 40px;
}

.boxlabel-container {
  flex-grow: 1;
  background-color: #a1aed0; /* slightly lighter */
  padding-top: 2px; /* To simulate the 96px height */
  padding-bottom: 2px;
  display: flex;
  align-items: center;
  justify-content: space-between;
}

.boxlabel {
  padding-left: 1rem;
  font-size: 1.5rem;
  color: #fefef9;
  text-shadow: -1.5px -1.5px 0 black, /* Top-left outline */
1.5px -1.5px 0 black,  /* Top-right outline */
-1.5px 1.5px 0 black,  /* Bottom-left outline */
1.5px 1.5px 0 black;   /* Bottom-right outline */
}

.boxarrow {
  padding-right: 1rem;
  font-size: 1.5rem;
  color: #fefef9;
  text-shadow: -1px -1px 0 #000, 1px -1px 0 #000, -1px 1px 0 #000, 1px 1px 0 #000;
}
