body, html { height: 100vh; width: 100vw; margin: 0; padding: 0; font-family: "Pridi", sans-serif; /* Use sans-serif fallback */ background-color: #4A628A; } h4, h2, h1{ margin: 0; } .page{ height: 100vh; width: 100vw; display: flex; justify-content: center; align-items: center; } .container { border-radius: 10px; background: linear-gradient(to bottom, rgba(74, 98, 138, 0.0) 30%, rgba(186, 237, 255, 0.7)); box-shadow: 0 10px 30px rgba(0, 0, 0, 0.1); display: flex; flex-direction: column; align-items: center; height: 90%; width: 35%; } .header{ text-align: center; padding-bottom: 16px; padding-top: 32px; } .title{ font-size: 48px; font-weight: 500; letter-spacing: -1px; color: white; } .subheading{ padding-top: 8px; font-size: 16px; letter-spacing: -0.5px; color: rgba(255,255,255, 0.8); } .form{ display: flex; flex-direction: column; align-items: center; justify-content: space-between; width: 80%; height: 100%; overflow: hidden; } .footer { padding-bottom: 16px; display: flex; width: 100%; flex-direction: row; justify-content: space-between; /* Align buttons next to each other */ align-items: center; gap: 10px; /* Space between buttons */ } .filename-title{ font-size: 16px; font-weight: 300; color: white; padding: 48px 24px 48px 24px; background-color: rgba(0,0,0,0.25); border-radius: 10px; margin-top: 16px; box-shadow: 2px 2px 2px 1px rgb(0 0 0 / 20%); } .users_block{ padding-top: 16px; } label{ margin-top: 8px; color: white; } .choose_user_form_content { overflow-y: hidden; width: 100%; height: auto; max-height: 180px; display: flex; flex-direction: column; align-items: flex-start; } h5{ font-size: 20px; font-weight: 300; text-align: center; color: white; } /* Styling for buttons */ .form button { flex: 1; /* Ensure buttons are equal width */ padding: 16px; font-weight: 300; border: none; border-radius: 8px; cursor: pointer; transition: background-color 0.3s ease, transform 0.2s ease; } button[name="underline"] { background-color: transparent; /* No background */ border: none; /* Remove default button border */ color: #4A628A; /* Set text color */ font-size: 1em; /* Set font size */ cursor: pointer; /* Add pointer cursor for interactivity */ text-decoration: underline; /* Underline text */ padding: 0; /* Remove default padding */ } button[name="submit"] { width: 100%; background-color: #4A628A; /* Blue background */ color: white; /* White text color */ } button[name="submit"]:hover { background-color: #3B5173; /* Darker background on hover */ } .choose_user_form_content::-webkit-scrollbar { width: 4px; /* Width of the scrollbar */ } .choose_user_form_content::-webkit-scrollbar-track { background: rgba(255, 255, 255, 0.1); /* Track background color */ border-radius: 10px; /* Rounded corners for the track */ } .choose_user_form_content::-webkit-scrollbar-thumb { background-color: rgba(74, 98, 138, 0.8); /* Scrollbar handle color */ border-radius: 10px; /* Rounded corners for the scrollbar handle */ } .choose_user_form_content::-webkit-scrollbar-thumb:hover { background-color: rgba(74, 98, 138, 1); /* Darker color on hover */ } .choose_user_form_content:empty { overflow-y: hidden; }