  body {
    font-family: Arial, sans-serif;
    background-color: #f7f7f7;
    margin: 0;
    padding: 0;
}

.text-gray-600 {
    color: #666;
}

.text-gray-800 {
    color: #333;
}

.rounded-lg {
    border-radius: 8px;
}
.h1 {
    font-size: 35px;
    margin-bottom: 20px;
}

.fav-item {
  display: flex;
  justify-content: space-between;
  align-items: center;
  /* Add padding, margins, or other styling as needed */
}

.fav-item span {
  overflow: hidden;
  text-overflow: ellipsis;
  white-space: nowrap;
}

.fav-item i {
  cursor: pointer;
}

/* General Step Class */
.step {
    margin-bottom: 30px;
    padding: 20px;
    background-color: #f9f9f9;
    border-radius: 5px;
    max-width: 100%; /* Ensure the step container does not overflow */
    box-sizing: border-box; /* Include padding and border in element's width and height */
    overflow: hidden; /* Prevent content overflow */
}


.step-title {
    font-size: 24px;
    margin-top: 15px;
}

/* Step Description */
.step-description {
    font-size: 16px;
    color: #666;
}


/* Media Queries for Responsiveness */
@media screen and (max-width: 768px) {
    .step {
        padding: 15px;
        margin-bottom: 20px;
        max-width: 100%; /* Ensure the step container does not overflow */
        overflow-x: hidden; /* Prevent horizontal overflow */
    }

    .step-title {
        font-size: 20px;
    }

    .step-description {
        font-size: 14px;
    }
}

    .icon {
        font-size: 36px;
        margin-bottom: 10px;
        transition: transform 0.3s ease;
    }
    
  
  .container-rizz{
      max-width: 1250px;
      margin: 1rem auto;
      padding: 0.5rem;
      background: #ffffff;
      border-radius: 8px;
      box-shadow: 0 0 15px rgba(0, 0, 0, 0.1);
    }

    .card-hover:hover {
      transform: translateY(-5px);
      transition: transform 0.2s ease;
    }
    .btn-hover:hover {
      transform: scale(1.03);
      transition: transform 0.2s ease;
    }
    .loading-spinner {
    border: 4px solid #f3f3f3;
    border-top: 4px solid #000000; /* Black spinner */
    border-radius: 50%;
    width: 24px;
    height: 24px;
    animation: spin 1s linear infinite;
    margin: 0 auto;
}

@keyframes spin {
    0% {
        transform: rotate(0deg);
    }
    100% {
        transform: rotate(360deg);
    }
}

    .toast {
      position: fixed;
      bottom: 16px;
      right: 16px;
      background-color: #4c51bf;
      color: #fff;
      padding: 10px 14px;
      border-radius: 8px;
      font-size: 14px;
      opacity: 0;
      transform: translateY(20px);
      transition: opacity 0.3s, transform 0.3s;
      z-index: 9999;
    }
    .toast.show {
      opacity: 1;
      transform: translateY(0);
    }
    .icon-container i {
      cursor: pointer;
    }
    .favourites-list p {
      display: flex;
      justify-content: space-between;
      align-items: center;
      margin-bottom: 6px;
    }
    .favourites-list p i {
      margin-left: 10px;
      cursor: pointer;
    }
    .relative .fa-dice {
      position: absolute;
      right: 10px;
      top: 50%;
      transform: translateY(-50%);
      cursor: pointer;
      color: #000000;
      z-index: 10; 
      pointer-events: auto; 
    }
    .editable-line[contenteditable="true"] {
      border: 1px solid #ddd;
      padding: 2px;
    }
    #customRizzBtn:focus {
      outline: none;
    }
    #resetBtn:focus {
      outline: none;
    }
    
        
.feedback{
    

margin-top:10px;
max-width:1200px;
width:100%;
background-color:white;
padding:20px;
border-radius:10px;
}


        .icon {
            font-size: 48px;
            margin-bottom: 10px;
        }
        
        .text {
            font-size: 16px;
            line-height: 1.5;
        }