body { background-color: #F5F5F5; } #title { background-color: #F5F5F5; border: none; font-size: 18px; font-weight: bold; left: 0; padding: 10px 25px; position: fixed; text-align: left; top: 0; transition: transform 0.3s ease; width: 100%; z-index: 1000; } #apps-list { margin-top: 100px; } .search-card { background-color: white; border: 1px solid #ccc; border-radius: 25px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); display: flex; align-items: center; padding: 10px; position: fixed; top: 40px; transition: transform 0.3s ease; width: calc(100% - 100px); z-index: 1000; } .search-input { background-color: #fff; border: none; box-sizing: border-box; font-size: 14px; outline: none; padding: 5px 15px; text-align: left; width: 100%; } .clear-btn { position: absolute; right: 10px; border: none; background: none; color: #ccc; font-size: 18px; cursor: pointer; display: none; z-index: 10; } .menu { display: flex; position: fixed; top: 40px; right: 10px; z-index: 1000; transition: transform 0.3s ease; } .menu-toggle { display: none; } #menu-button { background-color: white; border: 1px solid #ccc; border-radius: 25px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); padding: 13px 17px; text-align: center; position: relative; z-index: 1000; } .menu-icon { display: inline-block; transition: transform 0.3s ease; } .menu-icon.menu-open { transform: rotate(90deg); } .menu-icon.menu-closed { transform: rotate(0deg); } .menu-options { background-color: white; border: 1px solid #ccc; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); display: none; position: absolute; top: 110%; right: 0; transform: translateX(120%); transition: transform 0.3s ease; width: auto; white-space: nowrap; } .menu-options.visible { display: block; transform: translateX(0); } .menu-options.hidden { transform: translateX(140%); } .menu-options ul { list-style: none; margin: 0; padding: 0; } .menu-options li { cursor: pointer; padding: 15px 18px; text-align: left; } .card { background-color: white; border: none; border-radius: 8px; margin-bottom: 10px; outline: none; padding: 15px; } .content { display: flex; justify-content: space-between; align-items: center; } .name { display: inline-block; margin: 0; max-width: calc(100% - 30px); overflow-wrap: break-word; word-break: break-word; } .checkbox { margin-left: auto; } .prompt { position: fixed; bottom: 0; left: 10px; background-color: #4CAF50; border-radius: 8px; box-shadow: 0 2px 4px rgba(0, 0, 0, 0.2); color: white; font-size: 15px; padding: 5px 15px; z-index: 1000; transform: translateY(100%); transition: transform 0.5s ease; white-space: nowrap; } .prompt.visible { animation: YbounceIn 0.4s forwards; } .prompt.hidden { animation: YbounceOut 0.4s forwards; } .prompt.error { background-color: #f44336; } @keyframes YbounceIn { 0% { transform: translateY(100%); } 50% { transform: translateY(-80%); } 100% { transform: translateY(-60%); } } @keyframes YbounceOut { 0% { transform: translateY(-60%); } 50% { transform: translateY(-80%); } 100% { transform: translateY(100%); } } .floating-card { display: flex; justify-content: center; position: fixed; bottom: -50px; left: 50%; transform: translateX(-50%); z-index: 3; } .floating-btn { background-color: #007bff; border: none; border-radius: 24px; box-shadow: 0 4px 8px #0003; color: #fff; display: flex; justify-content: center; align-items: center; padding: 10px 20px; font-size: 16px; transition: transform 0.3s ease-in-out; } .loading { color: #6E6E6E; display: flex; justify-content: center; align-items: center; height: calc(100vh - 164px); font-size: 24px; } .acknowledgment { color: #6E6E6E; padding: 20px; text-align: center; font-size: 14px; } @media (prefers-color-scheme: dark) { body { background-color: #121212; color: #eee; } #title { background-color: #121212; } .card, .search-input, .search-card { background-color: #343434; } .search-card { border: 1px solid #6E6E6E; } .search-input{ color: white; } .menu-options, #menu-button { background-color: #343434; border: 1px solid #6E6E6E; } }