
section {
    background-color: #fff;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0 0 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
}

h2 {
    color: #333;
}

.button {
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    background-color: #3498db;
    color: #fff;
    border: none;
    border-radius: 4px;
}

.button:hover {
    background-color: #2980b9;
}

.effect-button {
    padding: 10px;
    margin: 5px;
    cursor: pointer;
    background-color: #141e18;
    color: #fff;
    border: none;
    border-radius: 4px;
}

.effect-button:hover {
    background-color: #27ae60;
}

.table-container {
    margin-top: 20px;
    width: 45%;
}

.table {
    border-collapse: collapse;
    width: 100%;
    border: 1px solid black;
    
}

.table, th, td {
    border: 1px solid #942d2d;
    padding: 8px;
    text-align: left;
}

.table th {
    background-color: #3498db;
    color: #fff;
}

/* ///////////////////////////////////////////////////////////////////////////////////// */

.table1-container {
    margin-top: 20px;
    height: 300px; /* Set a fixed height */
    width: 45%;
    overflow: auto; /* Add a scrollbar when content overflows */
}

.table1 {
    width: 100%;
    border-collapse: collapse;
    margin-top: 10px;
}

.table1 th, td {
    border: 1px solid #ddd;
    padding: 10px;
    text-align: left;
}

.table1 th {
    background-color: #3498db;
    color: #fff;
    position: sticky;
    top: 0;
}

.table1 tr:nth-child(even) {
    background-color: #f9f9f9;
}

/* ///////////////////////////////////////////////////////////////////////////////////// */

.hidden-element {
    display: none;
}


iframe {
    width: 100%;
    height: 300px;
    border: none;
}



.container1{
    display: flex; justify-content: space-between; margin: 10px 20px;
}

@media only screen and (max-width: 600px) {
    .container1{
      flex-direction: column;
      margin: 100px 0px;
    }
    .table-container{
        width: 100%;
    }
  }
@media only screen and (max-width: 800px) {
    .container1{
      flex-direction: column;
      margin: 100px 0px;
    }
    .table-container{
        width: 100%;
        overflow: auto;
    }
  }

  .customFeature_section {
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
    padding: 1rem;
    gap: 1rem;
    width: 100%;
    box-shadow: none;
  }

  .customFeature_box {
    flex: 1 1 250px;
    min-width: 220px;
    max-width: 300px;
    background: #f9f9f9;
    padding: 1rem;
    border-radius: 12px;
    text-align: center;
    box-shadow: 0 2px 6px rgba(0,0,0,0.1);
  }

  .customFeature_title {
    font-weight: bold;
    margin-bottom: 0.5rem;
  }

  .customFeature_btn {
    padding: 8px 16px;
    border: none;
    border-radius: 6px;
    background-color: #eeeeee;
    cursor: pointer;
    transition: background 0.3s ease;
    margin: 4px 0;
  }

  .customFeature_btn:hover {
    background-color: #cccccc;
  }

  .customFeature_effect {
    background-color: #333;
    color: white;
  }

  .customFeature_red {
    background-color: rgb(142, 3, 3);
    color: white;
  }

  @media (max-width: 768px) {
    .customFeature_section {
      flex-direction: column;
      align-items: center;
    }
  }

.suggestion-container {
    position: relative;
    display: inline-block;
    width: 300px;
}

.suggestion_input {
    padding: 10px;
    width: 100%;
    margin: 10px 0px;
    font-size: 16px;
    border: 1px solid #ccc;
    border-radius: 4px;
}

.suggestion_select {
    position: absolute;
    top: 100%;
    left: 0;
    width: 100%;
    max-height: 200px;
    overflow-y: auto;
    border: 1px solid #ccc;
    border-top: none;
    border-radius: 0 0 4px 4px;
    background-color: #fff;
    z-index: 1;
    display: none;
}

.suggestion_select option {
    padding: 8px;
}

.suggestion_input:focus + .suggestion_select {
    display: block;
}

.category_name{
    background-color: #0b0e0c;
    width: 190px;
    padding: 3px;
    margin:     0px 0px 20px 0px;
    border-radius: 16px;
    color: white;
    text-align: center;
};

.blinkingText{
    float: right;
    margin-top: -37px;
    font-weight: bold;
    padding: 0px 10px;
    font-size: 20px;
    background: #27b35f;
    color: #fff !important;
    animation: blink 1s linear infinite;
    text-decoration: underline;
    cursor: pointer;
}
@keyframes blink {
    0%, 100% {
        opacity: 1;
    }
    50% {
        opacity: 0;
    }
}

.form-check,select{
    margin: 12px 12px;
}


/* model css */

     
    /* Styling for the modal */
    .modal {
      display: none;
      position: fixed;
      top: 0;
      left: 0;
      width: 100%;
      height: 100%;
      background-color: rgba(0, 0, 0, 0.5); /* Semi-transparent background */
      justify-content: center;
      align-items: center;
      z-index: 1; /* Ensure the modal is on top */
  }

  .modal-content {
    background-color: #fff;
    padding: 20px;
    border-radius: 5px;
    z-index: 2;
    width: 90%; /* changed from 550px */
    max-width: 550px; /* added max-width to limit width on large screens */
    display: flex;
    flex-wrap: wrap;
    justify-content: space-around;
}
.login_main{
    width: 100%;
}
  /* Styling for the button that opens the modal */
  .open-modal-btn {
      padding: 10px 15px;
      background-color: #007bff;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
  }
 
  .login_main input {
    width: 100%;
    margin-bottom: 10px;
    box-sizing: border-box;
}

  @media screen and (max-width: 600px) {
    .modal-content {
      width: 90% !important;
      padding: 15px;
      flex-direction: column;
      align-items: stretch;
    }
  
    .login_main {
      width: 100%;
    }
  
    .login_main form {
      width: 100%;
    }
  
    .login_main input {
      width: 100%;
      margin-bottom: 10px;
      box-sizing: border-box;
    }
  
    .login_wrap {
      display: flex;
      justify-content: center;
      margin-top: 10px;
    }
  
    .login_button {
      width: 100%;
    }
  }
  




  /* Style for form fields */

    .getQoutes{
      display: flex;
  flex-wrap: wrap;
  height: auto;
  justify-content: space-around;
}
  .form-field {
      margin-bottom: 15px;
      width: calc(39% - 24px);
  }
  .form-field input, select{
     padding: 9px;
  }
  /* Style for the submit button */
  .submit-btn {
      padding: 10px 15px;
      background-color: #007bff;
      color: #fff;
      border: none;
      border-radius: 5px;
      cursor: pointer;
      width: 100%; /* Full width submit button */
  }

.login_main h1 { 
    color: #4CAF50; 
} 
  
.login_main label { 
    display: block; 
    width: 100%; 
    margin-top: 10px; 
    margin-bottom: 5px; 
    text-align: left; 
    color: #555; 
    font-weight: bold; 
} 
  
  
.login_main input { 
    display: block; 
    width: 100%; 
    margin-bottom: 15px; 
    padding: 10px; 
    box-sizing: border-box; 
    border: 1px solid #ddd; 
    border-radius: 5px; 
} 
  
.login_button { 
    padding: 15px; 
    border-radius: 10px; 
    margin-top: 15px; 
    margin-bottom: 15px; 
    border: none; 
    color: white; 
    cursor: pointer; 
    background-color: #4CAF50; 
    width: 100%; 
    font-size: 16px; 
} 
  
.login_wrap { 
    display: flex; 
    justify-content: center; 
    align-items: center; 
}