.cookie-banner {
  width: 100%;             /* se întinde pe lățimea containerului părinte */
  padding-left:16px;
padding-right:16px;
/*  padding: 4px 16px;*/
  font-family: Arial, sans-serif;
  display: flex;
  justify-content: space-between;
  align-items: center;
  gap: 12px;
  font-size: 11px;
  box-sizing: border-box;

	 display: flex;
  justify-content: space-between;
  align-items: center; /* centru vertical */
  gap: 12px;

}

.cookie-banner p {
  margin: 0;
  display: flex;
  align-items: center;  /* text centrat pe verticală */
  line-height: 1.2;
}


.cookie-buttons {
  display: flex;
  gap: 5px;
}

.cookie-buttons button {
/*  padding: 2px 20px;*/
  border: none;
  border-radius: 6px;
  font-weight: 600;
  cursor: pointer;
  font-size: 11px;
  transition: 0.2s;
}

.btn-accept { background: #EEEEEE; color: #428bca; }
.btn-accept:hover { opacity: 0.9; background: #CCCCCC;}
.btn-reject { background: #EEEEEE; color: #428bca; }
.btn-reject:hover { opacity: 0.9; background: #CCCCCC;}