/* Base Styles */
:root {
    --primary-color: #e63946;
    --secondary-color: #1d3557;
    --accent-color: #457b9d;
    --light-color: #f1faee;
    --dark-color: #1d3557;
    --text-color: #333;
    --text-light: #666;
    --border-color: #ddd;
    --success-color: #2ecc71;
    --warning-color: #f39c12;
    --error-color: #e74c3c;
    --box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    --transition: all 0.3s ease;
  }
  
  * {
    margin: 0;
    padding: 0;
    box-sizing: border-box;
  }
  
  html {
    scroll-behavior: smooth;
  }
  
  body {
    font-family: "Roboto", sans-serif;
    line-height: 1.6;
    color: var(--text-color);
    background-color: #fff;
  }
  
  a {
    text-decoration: none;
    color: inherit;
  }
  
  ul {
    list-style: none;
  }
  
  img {
    max-width: 100%;
    height: auto;
    display: block;
  }
  
  button {
    cursor: pointer;
    font-family: inherit;
  }
  
  .container {
    width: 100%;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
  }
  
  .btn {
    display: inline-block;
    padding: 12px 24px;
    border-radius: 4px;
    font-weight: 500;
    text-align: center;
    transition: var(--transition);
    border: none;
  }
  
  .btn-primary {
    background-color: var(--primary-color);
    color: white;
  }
  
  .btn-primary:hover {
    background-color: #d32f2f;
  }
  
  .btn-secondary {
    background-color: var(--secondary-color);
    color: white;
  }
  
  .btn-secondary:hover {
    background-color: #152a45;
  }
  
  .btn-light {
    background-color: var(--light-color);
    color: var(--dark-color);
  }
  
  .btn-light:hover {
    background-color: #e0e9e0;
  }
  
  .section-header {
    text-align: center;
    margin-bottom: 40px;
  }
  
  .section-header h2 {
    font-size: 2.5rem;
    margin-bottom: 10px;
    color: var(--dark-color);
  }
  
  .section-header p {
    color: var(--text-light);
    font-size: 1.1rem;
  }
  
  /* Header Styles */
  header {
    background-color: white;
    box-shadow: var(--box-shadow);
    position: sticky;
    top: 0;
    z-index: 100;
  }
  
  header .container {
    display: flex;
    align-items: center;
    justify-content: space-between;
    height: 80px;
  }
  
  .logo h1 {
    font-size: 1.8rem;
    font-weight: 700;
    color: var(--dark-color);
  }
  
  .logo span {
    color: var(--primary-color);
  }
  
  .nav-menu {
    display: flex;
    gap: 20px;
    z-index: 100;
  }
  
  .nav-menu a {
    font-weight: 500;
    transition: var(--transition);
    color: var(--dark-color);
    padding: 8px 0;
    position: relative;
  }
  
  .nav-menu a:hover {
    color: var(--primary-color);
  }
  
  .nav-menu a.active {
    color: var(--primary-color);
  }
  
  .nav-menu a.active::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 100%;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .mobile-menu-btn {
    display: none;
    background: none;
    border: none;
    flex-direction: column;
    gap: 6px;
    padding: 5px;
  }
  
  .mobile-menu-btn span {
    display: block;
    width: 25px;
    height: 3px;
    background-color: var(--dark-color);
    transition: var(--transition);
  }
  
  .header-actions {
    display: flex;
    align-items: center;
    gap: 20px;
  }

  .cart {
    position: relative;
    cursor: pointer;
  }
  
  .cart-count {
    position: absolute;
    top: -8px;
    right: -8px;
    background-color: var(--primary-color);
    color: white;
    font-size: 0.7rem;
    width: 18px;
    height: 18px;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
  }
  
  /* Hero Section */
  .hero {
    background-image: linear-gradient(rgba(0, 0, 0, 0.6), rgba(0, 0, 0, 0.6)),
      url("Images/engine.jpg");
    background-size: cover;
    background-position: center;
    color: white;
    padding: 100px 0;
    text-align: center;
  }
  
  .hero-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .hero h2 {
    font-size: 3rem;
    margin-bottom: 20px;
  }
  
  .hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  /* Features Section */
  .features {
    padding: 80px 0;
    background-color: var(--light-color);
  }
  
  .feature-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(250px, 1fr));
    gap: 30px;
  }
  
  .feature-card {
    background-color: white;
    padding: 30px;
    border-radius: 8px;
    box-shadow: var(--box-shadow);
    text-align: center;
    transition: var(--transition);
  }
  
  .feature-card:hover {
    transform: translateY(-5px);
  }
  
  .feature-icon {
    width: 60px;
    height: 60px;
    background-color: rgba(230, 57, 70, 0.1);
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin: 0 auto 20px;
    color: var(--primary-color);
  }
  
  .feature-card h3 {
    margin-bottom: 15px;
    font-size: 1.3rem;
  }
  
  /* Products Section */
  .products {
    padding: 80px 0;
  }
  
  .filter-controls {
    display: flex;
    justify-content: center;
    flex-wrap: wrap;
    gap: 10px;
    margin-bottom: 40px;
  }
  
  .filter-btn {
    padding: 8px 16px;
    background: none;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    font-size: 0.9rem;
    transition: var(--transition);
  }
  
  .filter-btn:hover,
  .filter-btn.active {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .product-grid {
    display: grid;
    grid-template-columns: repeat(auto-fill, minmax(280px, 1fr));
    gap: 30px;
    margin-bottom: 40px;
  }
  
  .product-card {
    border: 1px solid var(--border-color);
    border-radius: 8px;
    overflow: hidden;
    transition: var(--transition);
  }
  
  .product-card:hover {
    box-shadow: var(--box-shadow);
    transform: translateY(-5px);
  }
  
  .product-image {
    height: 200px;
    overflow: hidden;
    position: relative;
  }
  
  .product-image img {
    width: 100%;
    height: 100%;
    object-fit:contain;
    transition: var(--transition);
  }
  
  .product-card:hover .product-image img {
    transform: scale(1.05);
  }
  
  .product-badge {
    position: absolute;
    top: 10px;
    left: 10px;
    padding: 5px 10px;
    border-radius: 4px;
    font-size: 0.8rem;
    font-weight: 500;
  }
  
  .badge-new {
    background-color: var(--primary-color);
    color: white;
  }
  
  .badge-sale {
    background-color: var(--success-color);
    color: white;
  }
  
  .quick-view {
    position: absolute;
    bottom: -50px;
    left: 0;
    right: 0;
    background-color: rgba(0, 0, 0, 0.7);
    color: white;
    text-align: center;
    padding: 10px;
    transition: var(--transition);
  }
  
  .product-card:hover .quick-view {
    bottom: 0;
  }
  
  .product-details {
    padding: 20px;
  }
  
  .product-category {
    font-size: 0.8rem;
    color: var(--text-light);
    margin-bottom: 5px;
  }
  
  .product-title {
    font-size: 1.1rem;
    margin-bottom: 10px;
    font-weight: 500;
  }
  
  .product-price {
    display: flex;
    align-items: center;
    gap: 10px;
    margin-bottom: 15px;
  }
  
  .current-price {
    font-weight: 700;
    font-size: 1.2rem;
    color: var(--dark-color);
  }
  
  .old-price {
    text-decoration: line-through;
    color: var(--text-light);
    font-size: 0.9rem;
  }
  
  .product-actions {
    display: flex;
    justify-content: space-between;
  }
  
  .add-to-cart {
    flex: 1;
    padding: 8px;
    background-color: var(--primary-color);
    color: white;
    border: none;
    border-radius: 4px;
    font-weight: 500;
    transition: var(--transition);
  }
  
  .add-to-cart:hover {
    background-color: #d32f2f;
  }
  
  .load-more {
    text-align: center;
  }
  
  /* Brands Section */
  .brands {
    padding: 60px 0;
    background-color: #f9f9f9;
  }
  
  .brand-slider {
    display: flex;
    align-items: center;
    justify-content: space-between;
    flex-wrap: wrap;
    gap: 30px;
  }
  
  .brand-logo {
    flex: 1;
    min-width: 150px;
    text-align: center;
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .brand-logo:hover {
    opacity: 1;
  }
  
  /* CTA Section */
  .cta {
    background-color: var(--secondary-color);
    color: white;
    padding: 80px 0;
    text-align: center;
  }
  
  .cta-content {
    max-width: 700px;
    margin: 0 auto;
  }
  
  .cta h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
  }
  
  .cta p {
    margin-bottom: 30px;
    opacity: 0.9;
  }
  
  /* About Section */
  .about {
    padding: 80px 0;
  }
  
  .about-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
    align-items: center;
  }
  
  .about-image img {
    border-radius: 8px;
    box-shadow: var(--box-shadow);
  }
  
  .about-content p {
    margin-bottom: 20px;
    color: var(--text-light);
  }
  
  .about-stats {
    display: flex;
    justify-content: space-between;
    margin-top: 40px;
    text-align: center;
  }
  
  .stat h3 {
    font-size: 2rem;
    color: var(--primary-color);
    margin-bottom: 5px;
  }
  
  /* Testimonials Section */
  .testimonials {
    padding: 80px 0;
    background-color: #f9f9f9;
  }
  
  .testimonial-slider {
    display: flex;
    gap: 30px;
    overflow-x: hidden;
  }
  
  .testimonial-card {
    background-color: white;
    border-radius: 8px;
    padding: 30px;
    box-shadow: var(--box-shadow);
    min-width: 100%;
  }
  
  .testimonial-content {
    margin-bottom: 20px;
    font-style: italic;
    color: var(--text-light);
  }
  
  .testimonial-author {
    display: flex;
    align-items: center;
    gap: 15px;
  }
  
  .testimonial-author img {
    width: 60px;
    height: 60px;
    border-radius: 50%;
    object-fit: cover;
  }
  
  .testimonial-author h4 {
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .testimonial-controls {
    display: flex;
    justify-content: center;
    gap: 20px;
    margin-top: 30px;
  }
  
  .testimonial-btn {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: white;
    border: 1px solid var(--border-color);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .testimonial-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  /* Contact Section */
  .contact {
    padding: 80px 0;
  }
  
  .contact-grid {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 50px;
  }
  
  .info-item {
    display: flex;
    align-items: flex-start;
    gap: 15px;
    margin-bottom: 30px;
  }
  
  .info-item svg {
    color: var(--primary-color);
  }
  
  .info-item h4 {
    margin-bottom: 5px;
    font-weight: 500;
  }
  
  .form-group {
    /* margin-bottom: 20px; */
    font-weight: 600;
  }
  
  .form-group label {
    display: block;
    margin-bottom: 8px;
    font-weight: 500;
  }
  
  .form-group input,
  .form-group textarea,
  .textField{
    width: 100%;
    padding: 12px 15px;
    border: 2px solid var(--border-color);
    border-radius: 4px;
    transition: var(--transition);
  }
  
  .form-group input:focus,
  .form-group textarea:focus,
  .textField:focus{
    outline: none;
    border-color: var(--accent-color);
  }
  
  /* Footer */
  footer {
    background-color: var(--dark-color);
    color: white;
    padding: 60px 0 20px;
  }
  
  .footer-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(200px, 1fr));
    gap: 40px;
    margin-bottom: 40px;
  }
  
  .footer-about p {
    margin: 20px 0;
    opacity: 0.8;
  }
  
  .social-links {
    display: flex;
    gap: 15px;
  }
  
  .social-links a {
    width: 40px;
    height: 40px;
    border-radius: 50%;
    background-color: rgba(255, 255, 255, 0.1);
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .social-links a:hover {
    background-color: var(--primary-color);
  }
  
  .footer-links h3,
  .footer-newsletter h3 {
    font-size: 1.2rem;
    margin-bottom: 20px;
    position: relative;
    padding-bottom: 10px;
  }
  
  .footer-links h3::after,
  .footer-newsletter h3::after {
    content: "";
    position: absolute;
    bottom: 0;
    left: 0;
    width: 50px;
    height: 2px;
    background-color: var(--primary-color);
  }
  
  .footer-links ul li {
    margin-bottom: 10px;
  }
  
  .footer-links ul li a {
    opacity: 0.8;
    transition: var(--transition);
  }
  
  .footer-links ul li a:hover {
    opacity: 1;
    color: var(--primary-color);
    padding-left: 5px;
  }
  
  .footer-newsletter p {
    margin-bottom: 20px;
    opacity: 0.8;
  }
  
  .newsletter-form {
    display: flex;
    gap: 10px;
  }
  
  .newsletter-form input {
    flex: 1;
    padding: 10px 15px;
    border: 1px solid rgba(255, 255, 255, 0.1);
    background-color: rgba(255, 255, 255, 0.05);
    border-radius: 4px;
    color: white;
  }
  
  .newsletter-form input:focus {
    outline: none;
    border-color: rgba(255, 255, 255, 0.3);
  }
  
  .newsletter-form button {
    padding: 10px 15px;
  }
  
  .footer-bottom {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding-top: 20px;
    border-top: 1px solid rgba(255, 255, 255, 0.1);
    flex-wrap: wrap;
    gap: 20px;
  }
  
  .footer-bottom p {
    opacity: 0.7;
    font-size: 0.9rem;
  }
  
  .footer-bottom-links {
    display: flex;
    gap: 20px;
  }
  
  .footer-bottom-links a {
    opacity: 0.7;
    font-size: 0.9rem;
    transition: var(--transition);
  }
  
  .footer-bottom-links a:hover {
    opacity: 1;
    color: var(--primary-color);
  }
  
  /* Cart Sidebar */
  .cart-sidebar {
    position: fixed;
    top: 0;
    right: -400px;
    width: 100%;
    max-width: 400px;
    height: 100vh;
    background-color: white;
    box-shadow: -5px 0 15px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    transition: var(--transition);
    display: flex;
    flex-direction: column;
  }
  
  .cart-sidebar.active {
    right: 0;
  }
  
  .cart-header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 20px;
    border-bottom: 1px solid var(--border-color);
  }
  
  .close-cart {
    background: none;
    border: none;
    color: var(--text-light);
    transition: var(--transition);
  }
  
  .close-cart:hover {
    color: var(--primary-color);
  }
  
  .cart-items {
    flex: 1;
    overflow-y: auto;
    padding: 20px;
  }
  
  .empty-cart {
    display: flex;
    flex-direction: column;
    align-items: center;
    justify-content: center;
    height: 100%;
    color: var(--text-light);
    text-align: center;
  }
  
  .empty-cart svg {
    margin-bottom: 20px;
    opacity: 0.5;
  }
  
  .empty-cart p {
    margin-bottom: 20px;
  }
  
  .cart-item {
    display: flex;
    gap: 15px;
    padding: 15px 0;
    border-bottom: 1px solid var(--border-color);
  }
  
  .cart-item-image {
    width: 80px;
    height: 80px;
    border-radius: 4px;
    overflow: hidden;
  }
  
  .cart-item-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .cart-item-details {
    flex: 1;
  }
  
  .cart-item-title {
    font-weight: 500;
    margin-bottom: 5px;
  }
  
  .cart-item-price {
    color: var(--primary-color);
    font-weight: 500;
    margin-bottom: 10px;
  }
  
  .cart-item-quantity {
    display: flex;
    align-items: center;
    gap: 10px;
  }
  
  .quantity-btn {
    width: 25px;
    height: 25px;
    border-radius: 4px;
    border: 1px solid var(--border-color);
    background: none;
    display: flex;
    align-items: center;
    justify-content: center;
    transition: var(--transition);
  }
  
  .quantity-btn:hover {
    background-color: var(--primary-color);
    color: white;
    border-color: var(--primary-color);
  }
  
  .remove-item {
    background: none;
    border: none;
    color: var(--text-light);
    font-size: 0.9rem;
    margin-top: 10px;
    transition: var(--transition);
  }
  
  .remove-item:hover {
    color: var(--error-color);
  }
  
  .cart-footer {
    padding: 20px;
    padding-bottom: 7rem;
    border-top: 1px solid var(--border-color);
  }
  
  .cart-total {
    display: flex;
    justify-content: space-between;
    font-weight: 500;
    margin-bottom: 20px;
  }
  
  .total-amount {
    color: var(--primary-color);
    font-size: 1.2rem;
  }
  
  .checkout-btn {
    width: 100%;
  }
  
  .overlay {
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background-color: rgba(0, 0, 0, 0.5);
    z-index: 999;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
  
  .overlay.active {
    opacity: 1;
    visibility: visible;
    z-index: 999;
  }
  
  /* Product Modal */
  .modals,
  .product-modal {
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%) scale(0.9);
    width: 90%;
    height: 90%;
    max-width: 900px;
    background-color: white;
    border-radius: 8px;
    z-index: 1001;
    opacity: 0;
    visibility: hidden;
    transition: var(--transition);
  }
 
  #modal-container{
    display: flex;
    flex-direction: column;
    gap: 1rem;
    background-color:   unset;
  }
  .wrap{
    height: 100%;
    width: 100%;
    overflow-y: scroll;
  }
  #form-modal{
    background-color: #fff;
    border-radius: 8px;
    max-height: calc(90% - 3rem);
    position: relative;
  }
  #form-modal::before{
    content: "";
    height: 2.3rem;
    width: 100%;
    background: linear-gradient(to bottom, #fff, transparent);
    z-index: 1;
    position: absolute;
    top: 0;
    left: 0;
  }
  #form-modal::after{
    content: "";
    height: 2.5rem;
    width: 100%;
    background: linear-gradient(to top, #fff, transparent);
    position: absolute;
    bottom: 0;
    left: 0;
    border-radius: 0 0 8px 8px;
  }
  
  #form-modal-footer{
    background-color: #fff;
    border-radius: 8px;
    padding: 2rem;
  }
  #form-modal-footer .btn{
    width: 100%;
  }
  
  .modals.active,
  .product-modal.active {
    opacity: 1;
    visibility: visible;
    transform: translate(-50%, -50%) scale(1);
    overflow-y: scroll;
  }
  .modals.active{
    overflow-y: hidden;
  }
  #form-modal{
  }
  .modal-content {
    position: relative;
    padding: 30px;
    height: 50%;
  }
  
  .close-form-modal,
  .close-modal {
    position: absolute;
    top: 15px;
    right: 15px;
    background: none;
    border: none;
    color: var(--text-light);
    z-index: 1;
    transition: var(--transition);
  }
  
  .close-modal:hover {
    color: var(--primary-color);
  }
  
  .modal-body {
    display: grid;
    grid-template-columns: 1fr 1fr;
    gap: 18px;
  }
  
  .modal-gallery {
    position: relative;
  }
  
  .main-image {
    width: 100%;
    height: 300px;
    border-radius: 8px;
    overflow: hidden;
    margin-bottom: 15px;
  }
  
  .main-image img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .thumbnail-images {
    display: flex;
    gap: 10px;
  }
  
  .thumbnail {
    width: 70px;
    height: 70px;
    border-radius: 4px;
    overflow: hidden;
    cursor: pointer;
    opacity: 0.7;
    transition: var(--transition);
  }
  
  .thumbnail.active,
  .thumbnail:hover {
    opacity: 1;
    border: 2px solid var(--primary-color);
  }
  
  .thumbnail img {
    width: 100%;
    height: 100%;
    object-fit: cover;
  }
  
  .modal-info h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
  }
  
  .modal-category {
    color: var(--text-light);
    margin-bottom: 15px;
  }
  
  .modal-price {
    display: flex;
    align-items: center;
    gap: 15px;
    margin-bottom: 20px;
  }
  
  .modal-current-price {
    font-size: 1.5rem;
    font-weight: 700;
    color: var(--primary-color);
  }
  
  .modal-old-price {
    text-decoration: line-through;
    color: var(--text-light);
  }
  
  .modal-description {
    margin-bottom: 20px;
    color: var (--text-light);
  }
  
  .modal-meta {
    margin-bottom: 20px;
  }
  
  .meta-item {
    display: flex;
    margin-bottom: 10px;
  }
  
  .meta-label {
    font-weight: 500;
    width: 100px;
  }
  
  .modal-actions {
    display: flex;
    gap: 15px;
    margin-top: 30px;
  }
  
  .modal-quantity {
    display: flex;
    align-items: center;
    border: 1px solid var(--border-color);
    border-radius: 4px;
    overflow: hidden;
  }
  
  .modal-quantity button {
    width: 40px;
    height: 40px;
    background: none;
    border: none;
    font-size: 1.2rem;
    transition: var(--transition);
  }
  
  .modal-quantity button:hover {
    background-color: var(--border-color);
  }
  
  .modal-quantity input {
    width: 50px;
    height: 40px;
    border: none;
    text-align: center;
    font-weight: 500;
  }
  
  .modal-add-to-cart {
    flex: 1;
  }
  
  .add-item-btn {
    margin-top: 1rem;
    transform: scaleY(.8) translateX(-50%);
    left: 50%;
    position: relative;
  }
  
  /* Responsive Styles */
  @media (max-width: 992px) {
    .about-grid {
      grid-template-columns: 1fr;
    }
  
    .about-image {
      order: 2;
    }
  
    .about-content {
      order: 1;
    }
  
    .contact-grid {
      grid-template-columns: 1fr;
      gap: 40px;
    }
  
    .modal-body {
      grid-template-columns: 1fr;
    }
  }
  
  @media (max-width: 768px) {
    header .container {
      position: relative;
    }
  
    .mobile-menu-btn {
      display: flex;
      margin-left: auto;
    }
  
    .nav-menu {
      position: absolute;
      top: 80px;
      left: 0;
      right: 0;
      background-color: white;
      flex-direction: column;
      padding: 20px;
      box-shadow: var(--box-shadow);
      transform: translateY(-20px);
      opacity: 0;
      visibility: hidden;
      transition: var (--transition);
    }
  
    .nav-menu.active {
      transform: translateY(0);
      opacity: 1;
      visibility: visible;
    }
  
    .hero h2 {
      font-size: 2.5rem;
    }
  
    .feature-grid {
      grid-template-columns: 1fr;
    }
  
    .about-stats {
      flex-direction: column;
      gap: 20px;
    }
  
    .footer-bottom {
      flex-direction: column;
      text-align: center;
    }
  
    .footer-bottom-links {
      flex-wrap: wrap;
      justify-content: center;
    }
  }
  
  @media (max-width: 576px) {
    .product-grid {
      grid-template-columns: 1fr;
    }
  
    .brand-slider {
      justify-content: center;
    }
  
    .newsletter-form {
      flex-direction: column;
    }
  
    .modal-actions {
      flex-direction: column;
    }
  
    .modal-quantity {
      width: 100%;
      justify-content: center;
    }
  }





  /* Exclusive style */
  #form-modal .modal-body{
    display: flex;
    flex-direction: column;
    position: relative;
    height: calc(100% - 5rem);
  }
  #form-modal .modal-body .input-field{
    padding: 0;
  }
  #form-modal .modal-body .title{
    margin-top: 0;
  }
  #inputField {
    display: flex;
    flex-wrap: wrap;
    align-items: center;
    min-height: 40px;
    width: 100%;
    padding: 8px;
    border: 1px solid gray;
    border-radius: 5px;
    background: white;
    gap: .5rem;
}
#inputField span {
    display: inline-flex;
    align-items: center;
    background: lightgray;
    border-radius: 12px;
    padding: .5rem .5rem .5rem 10px;
    position: relative;
    border-radius: 2rem;
    user-select: none;
    pointer-events: none;
    font-size: .8rem
}
#inputField span .remove {
    height: .7rem;
    cursor: pointer;
    font-weight: bold;
    background: #fff;
    position: relative;
    margin-left: .3rem;
    pointer-events: auto;
    width: 1.3rem;
    height: 1.3rem;
    background: #fff;
    display: flex;
    align-items: center;
    justify-content: center;
    padding: 0;
}
#options {
    display: flex;
    flex-wrap: wrap;
    margin-top: 10px;
    height: calc(30% - 5rem);
    max-width: 100%;
    padding-bottom: 4rem;
  }
  .option{
    padding: 4px 10px;
    margin-top: 0;
    margin: 5px;
    border: 1px solid gray;
    border-radius: 20px;
    cursor: pointer;
    background: #fff;
    transition: 0.3s;
    font-size: .9rem;
}
.option:hover {
    background: lightgray;
  }
.text-input {
    border: none;
    outline: none;
    flex-grow: 1;
}
.modal-footer{
    height: max-content;
    padding: 0 35px;
    width: 100%;
    background: green;
    bottom: 0;
}