.menu-html {
  flex: 1 1 200px;
  padding: 10px;
  border: 1px solid #ddd;
  background-color: #f9f9f9;
  border-radius: 5px;
  box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
  font-size: 15px;
}

.details-container {
    display: flex;
    flex-direction: column;
    gap: 15px;
    margin: 20px 0;
    font-size: 14px;
    color: #333;
}

.details-row {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.details-item {
    flex: 1 1 200px;
    padding: 10px;
    border: 1px solid #ddd;
    background-color: #f9f9f9;
    border-radius: 5px;
    box-shadow: 0 1px 3px rgba(0, 0, 0, 0.1);
}

.details-item strong {
    margin-bottom: 5px;
    font-weight: bold;
    color: #555;
}

.divider {
    margin: 1px 0;
}

.divider hr {
    border: 0;
    height: 1px;
    background-color: #ccc;
    width: 100%;
}

/* Responsivitate */
@media (max-width: 768px) {
    .details-row {
        flex-direction: column;
    }

    .details-item {
        flex: 1 1 100%;
    }
}
