@import url('https://fonts.googleapis.com/css2?family=Roboto:ital,wght@0,100;0,300;0,400;0,500;0,700;0,900;1,100;1,300;1,400;1,500;1,700;1,900&display=swap');

html,
body {
    margin: 0;
    padding: 0;
    width: 100%;
    min-height: 100vh;
    overflow-x: hidden;
    overflow-y: auto;
    color: #fff;
    font-family: 'Roboto', sans-serif;
    background-color: #0A0B11;
}

p {
    padding: 0;
    margin: 0;
    user-select: none;
    -webkit-user-select: none;
    -ms-user-select: none;
    -moz-user-select: none;
}

input {
    background-color: transparent;
    border: none;
    height: 30px;
    width: 100%;
    text-overflow: ellipsis;
    white-space: nowrap;
    box-sizing: border-box;
    font-size: 15px;
    font-weight: 500;
    color: white;
}

input[type="range"] {
    -webkit-appearance: none;
    border-radius: 5px;
    outline: none;
}

#firebaseAuth .input_bottom_line {
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
}

/* Password field with eye icon */
.password-field-container {
    position: relative;
    display: block;
    width: 400px;
}

.password-field-container input {
    width: 100%;
    border: none;
    border-bottom: 1px solid #ccc;
    outline: none;
    background: transparent;
    color: white;
    font-size: 14px;
    box-sizing: border-box;
    padding-right: 30px;
}

.password-field-container input::placeholder {
    color: #666666;
}

.password-toggle-icon {
    position: absolute;
    right: 5px;
    top: 50%;
    transform: translateY(-50%);
    cursor: pointer;
    width: 20px;
    height: 20px;
    display: flex;
    align-items: center;
    justify-content: center;
    color: #888;
    transition: color 0.3s ease;
    user-select: none;
}

.password-toggle-icon:hover {
    color: #59DD4B;
}

/* Layout utilities */
.full {
    width: 100%;
    height: 100%;
}

.full-top {
    width: 100%;
    min-height: 100vh;
}

.w-full {
    width: 100%;
}

.relativ {
    position: relative;
}

.vertical-center {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: center;
}

.vertical-left {
    display: flex;
    flex-direction: column;
    justify-content: center;
    align-items: flex-start;
}

.vertical-left-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: flex-start;
}

.vertical-top {
    display: flex;
    flex-direction: column;
    justify-content: flex-start;
    align-items: center;
}

.horizontal-center {
    display: flex;
    flex-direction: row;
    justify-content: center;
    align-items: center;
}

.horizontal-right {
    display: flex;
    flex-direction: row;
    justify-content: flex-end;
    align-items: center;
}

.free {
    position: absolute;
}

.full-top {
    top: 0;
}

.full-bottom {
    bottom: 0;
}

/* Menu styles */
#menu {
    width: 100%;
    height: 60px;
    background-color: #131523;
    border-bottom: 1px solid #333333;
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0 20px;
    box-sizing: border-box;
}

.menu-side {
    display: flex;
    align-items: center;
    gap: 10px;
}

#menu-logo {
    height: 40px;
    width: auto;
}

.menu-circle {
    width: 12px;
    height: 12px;
    border-radius: 50%;
    cursor: pointer;
    transition: all 0.3s ease;
}

.menu-circle:hover {
    transform: scale(1.1);
}

.red {
    background-color: #ff5f56;
}

.yellow {
    background-color: #ffbd2e;
}

.green {
    background-color: #27ca3f;
}

/* Transitions */
.t-cubic-fast {
    transition: all 0.2s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-cubic-normal {
    transition: all 0.3s cubic-bezier(0.4, 0, 0.2, 1);
}

.t-cubic-slow {
    transition: all 0.5s cubic-bezier(0.4, 0, 0.2, 1);
}

/* Opacity utilities */
.o0 {
    opacity: 0;
}

.o1 {
    opacity: 1;
}

/* Blur utility */
.blur {
    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
}

/* Interaction utilities */
.notInteractable {
    pointer-events: none;
}

.pointer {
    cursor: pointer;
}

/* Hide/Show utilities */
.hide {
    display: none !important;
}

.show {
    display: block !important;
}

/* Custom checkbox styling */
.custom-checkbox {
    display: flex;
    align-items: center;
    cursor: pointer;
    font-size: 0.9em;
    color: #cccccc;
}

.custom-checkbox input[type="checkbox"] {
    display: none;
}

.custom-checkbox .checkmark {
    width: 16px;
    height: 16px;
    background-color: transparent;
    border: 1px solid #333333;
    border-radius: 0px;
    margin-right: 10px;
    position: relative;
    display: flex;
    justify-content: center;
    align-items: center;
    transition: all 0.2s ease;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark {
    background-color: transparent;
    border-color: #59DD4B;
}

.custom-checkbox input[type="checkbox"]:checked + .checkmark::after {
    content: "";
    width: 8px;
    height: 4px;
    border: solid #59DD4B;
    border-width: 0 1px 1px 0;
    transform: rotate(-45deg) scaleX(-1);
    position: absolute;
}
