/*Sidebar */
.content {
  flex: 1;
  padding: 20px;
}
.layout {
  display: flex;
  min-height: 100vh;
}
.sidebar {
  height: 100vh;
  width: 260px;
  padding: 20px;
  position: sticky;
  box-shadow: 2px 0 5px rgba(0,0,0,0.1);
  flex-shrink: 0;   
  background-color: #f6f8fc;
 
}

.sidebar a {
  padding: 10px 1px 10px 1px;
  
  text-decoration: none;
  font-size: 17px;
  color: #2e2c2c;
  display: block;
  font-weight:500;
  
}

.sidebar .a-hover{
  color: #105272;
}

.menu-item {
  display: flex;
  align-items: center;
  gap: 8px;
  font-size: 16px;
  color: #333;
  text-decoration: none;
  padding: 8px 10px;
  border-radius: 5px;
  transition: background 0.2s, color 0.2s;
}
.main {
  margin-left: 100px; 
  font-size: 28px;
  padding: 0px 10px;
  transition: 0.2s ease;

}

.sidebar h6 {
  color: #646768;
  margin-left: 5px;
}

.search-bar {
    width: 600px;
    height: 60px;
    font-size: 1.25rem;
    border-radius: 10px; 
}

/*font*/
.extra-small{
  font-size: 0.85rem;
}

.custom-margin{
  margin-right: 900px;
}

.custom-hr{
  width: 90%;
}

.custom-bg{
  background-color: rgba(255, 115, 0, 0.116);
}

.custom-color{
  color: brown;
}

.custom-hover:hover{
  background-color: aliceblue;
  color:#2e2c2c;
  transition: 0.2s ease;

}

.card-cut {
  border: 2px dashed #bfbfbf;
  border-radius: 10px;
}


.search-wrapper {
  position: relative;
}
.search-icon {
  position: absolute;
  left: 0;
  top: 50%;
  transform: translateY(-50%);
  margin-left: 1rem;
  color: #6c757d;
  font-size: 1rem;
}
.search-input {
  padding-left: 2.5rem;
  padding-top: 0.5rem;
  padding-bottom: 0.5rem;
}

.petition-row{
    text-align: left !important;
    justify-content: flex-start !important;
    align-items: flex-start !important;
}
