/* Stiluri generale pentru mobil */
body {
    margin: 0;
    font-family: 'Arial', sans-serif;
    background: linear-gradient(to right, #f0f2f5, #ffffff);
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: flex-start;
    min-height: 100vh;
    overflow-y: auto;
  }
  
  /* Animație pentru text */
  @keyframes fadeIn {
    0% { opacity: 0; transform: translateY(-10px); }
    100% { opacity: 1; transform: translateY(0); }
  }
  
  /* Stiluri pentru landing page */
  .landing-page {
    text-align: center;
    padding: 20px;
    width: 100%;
    margin: 0 auto;
  }
  
  header {
    animation: fadeIn 2s ease-in-out;

    margin:20px;
    text-align:center;
  }
  
  header h1 {
    font-size: 1.5em;
    margin-bottom: 10px;
    color: #333;
  }
  
  header p {
    font-size: 1em;
    color: #666;
    margin-bottom: 20px;
  }
  
  .start-button {
    background: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s ease-in-out;
  }
  .marire { 
    margin-bottom:300px;
  }
  .start-button:hover {
    background: #45a049;
  }
  .marire
  .how-it-works {
    margin-top: 20px;
    animation: fadeIn 3s ease-in-out;
  }
  
  .how-it-works h2 {
    font-size: 1.2em;
    margin-bottom: 20px;
    color: #333;
  }
  
  .steps {
    display: flex;
    flex-direction: column;
    align-items: center;
  }
  
  .step {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 90%;
    margin: 10px 0;
    transition: transform 0.3s, box-shadow 0.3s;
  }
  
  .step:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  .step h3 {
    font-size: 1em;
    margin-bottom: 10px;
    color: #4CAF50;
  }
  
  .step p {
    font-size: 0.9em;
    color: #666;
  }
  
  /* Stiluri pentru root */
  #root {
    padding: 10px;
    width: 100%;
    margin: 0 auto;
    text-align: center;
  }
  
  .parquet-see {
    text-align: center;
    padding: 10px;
  }
  
  .view-in-room-button {
    background: #4CAF50;
    color: #fff;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-size: 1em;
    transition: background 0.3s ease-in-out;
    margin-top: 10px;
  }
  
  .view-in-room-button:hover {
    background: #45a049;
  }
  
  .parquet-list {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
    justify-content: center;
  }
  
  .parquet-option {
    background: #fff;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    padding: 10px;
    width: 45%;
    text-align: center;
    transition: transform 0.3s, box-shadow 0.3s;
    margin-bottom: 10px;
  }
  
  .parquet-option img {
    width:100px;
    height:100px;
    border-radius: 10px 10px 0 0;
  }
  
  .parquet-option p {
    font-size: 1em;
    color: #666;
  }
  
  .parquet-option.selected {
    border: 2px solid #4CAF50;
  }
  
  .parquet-option:hover {
    transform: translateY(-10px);
    box-shadow: 0 6px 10px rgba(0, 0, 0, 0.15);
  }
  
  footer {
    width: 100%;
    text-align: center;
    padding: 10px;
    background: #f0f2f5;
    position: relative;
    bottom: 0;
  }
  
  footer p {
    margin: 0;
    font-size: 1em;
    color: #666;
  }
  .overflow {
 overflow-y:auto;
  }
.logo-nou img {
    max-width: 50px!important;
    width:50px;
}