*{ padding: 0; margin: 0; box-sizing: border-box; } html,body{ background: gainsboro; padding: 0px; } .center{ display: flex; justify-content: center; align-items: center; } .dateRangeSelect { width: 191px; /* Adjust the width as needed */ } .morningSelect, .endingSelect { width: 142px; /* Adjust the width as needed */ } .container-header{ background: #F7F7F7; padding: 10px; margin-block: 5px; width: 100%; font-family:'Open Sans'; font-size: 24px; color:#333333; text-align: center; border-radius: 5px; box-shadow: rgba(99, 99, 99, 0.2) 0px 2px 8px 0px; } .container{ background: #F5F5DC; padding: 20px; margin-block: 5px; width: 100%; border-radius: 5px; border: 1px solid #C9E4CA; font-family:'Open Sans'; box-shadow: rgba(0, 0, 0, 0.16) 0px 3px 6px, rgba(0, 0, 0, 0.23) 0px 3px 6px; } .form-data { display: flex; gap: 20px; } .days-checkboxs{ display: flex; flex-direction: column; gap: 18px; margin-top: 8px; } .time-boxes{ display: flex; flex-direction: column; } .current-future-date{ margin-bottom: 7px; } .current-future-date select{ padding: 5px; } .time-boxes select{ margin-bottom: 7px; padding: 5px; } .label{ padding-top: 10px; } label{ font-weight: bold; } input, select { border-radius: 5px; border: 1px solid #ccc; font-size: 16px; color: #333; } .line{ display: block; background: rgb(224, 222, 222); height: 1px; margin:20px 50px ; } .line1{ display: block; background: rgb(224, 222, 222); height: 1px; margin:20px 50px ; } #personal-info { width: 100%; display: flex; gap: 20px; } .form-group { display: flex; align-items: center; margin-top: 15px; } .form-group label { width: 100px; margin-right: 60px; } .time-section{ display: flex; gap: 15px; } label{ font-size: 14px; } .days label{ font-family:'Open Sans'; font-size: 14px; color: #333333; } .form-group input { flex: 1; padding: 8px; font-size: 16px; width: 100%; /* Ensures the input takes up available space */ box-sizing: border-box; } .form-group select { flex: 1; padding: 8px; font-size: 16px; width: 100%; /* Ensures the input takes up available space */ box-sizing: border-box; } .days-section{ display: flex; gap: 10px; padding-inline: 40px; border-right: 1px solid rgb(224, 222, 222); border-left:1px solid rgb(224, 222, 222) ; } .checkbox-size { width: 20px; height: 20px; cursor: pointer; } .button-container { display: flex; justify-content: flex-end; margin-top: 20px; } .button-container button { padding: 10px 20px; font-size: 16px; margin-left: 10px; cursor: pointer; border: none; color: white; background: #2196F3; font-family: 'Montserrat'; border-radius: 5px; } .button-container button:hover{ background: #0b70c2; } .form-image{ width: 30px; } .add-section{ position: fixed; right: 5px; padding: 10px; cursor: pointer; border: none; background: #2196F3; border-radius: 5px; } .box-section{ background: white; padding: 30px 10px; border: 1px solid #aeadad; border-radius: 5px; } .mobile-form{ display: none; } .laptop-form{ display: block; } .row1{ width: 370px; } @media (max-width: 862px) { .line1{ display: none; } .laptop-form{ display: none; } .mobile-form{ display: block; } .form-group { align-items:flex-start; flex-direction: column; } .row1{ width: 250px; } .time-section { gap: 2px; } .current-future-date select{ width: 100%; } .container-header { font-size: 18px; } .form-data { flex-direction: column; } .container { width: 100%; margin: auto; padding: 15px; } .days-section { display: flex; justify-content: space-between; } .time-section { justify-content: space-between; margin-top: 10px; } #personal-info { flex-direction: column; gap: 0px; } .button-container { justify-content: space-between; margin-top: 20px; } .button-container button { padding: 10px 35px; font-size: 16px; margin-left: 0px; } .checkbox-size { width: 25px; height: 25px; } .line { background: rgb(224, 222, 222); height: 1px; margin: 30px 40px; } .button-container { display: flex; justify-content: flex-end; margin-top: 20px; } .button-container button { padding: 10px 20px; font-size: 16px; margin-left: 10px; cursor: pointer; border: none; color: white; background: #2196F3; font-family: 'Montserrat'; border-radius: 5px; } .button-container button:hover { background: #0b70c2; } .form-data { margin-bottom: 20px; } .form-section { margin-bottom: 20px; /* Adds space between each new section */ padding: 15px; border: 1px solid #ddd; border-radius: 5px; background-color: #f9f9f9; } } .notification { position: fixed; bottom: 20px; right: 20px; background-color: #4caf50; color: white; padding: 15px; border-radius: 5px; box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2); font-size: 16px; z-index: 1000; opacity: 0; animation: fadeInOut 3s ease-in-out forwards; } @keyframes fadeInOut { 0% { opacity: 0; } 10% { opacity: 1; } 90% { opacity: 1; } 100% { opacity: 0; } }