@import url('https://fonts.googleapis.com/css2?family=Bebas+Neue&family=Noto+Sans+KR:wght@100..900&display=swap');

* {
    font-family: 'Noto Sans KR';
}
body {
    margin: 0;
    width: 100vw;
    min-height: 100dvh;
    background: light-dark(white, #121212);
    background-color: light-dark(white, #121212);



    overflow-x: hidden;
}

/* 변수 설정 (대표 색상) */

:root {
    color-scheme: light dark;
    --border: #e5e5e5;
    --point: #5c55eb;
    --black: #000000;
    --gray: #b6b6b6;

    --body-maxWidth: 1200px;
    --body-x-padding: 50px;

    --navbar-height: 80px;

    --bebas: "Bebas Neue";
    --noto: "Noto Sans KR";

    --box-radius: 12px;

    --shadow: rgba(149, 157, 165, 0.4) 0px 4px 12px;

    --large: 24px;
    --medium: 16px;
    --small: 12px;
    --description: 10px;

    --bold: 600;
    --regular: 400;

            --dark-background: #121212;
        --dark-box: #2d2d2d;
}

#status-mobile {
    position: fixed;
  left: 0;
  right: 0;
  top: -80px;
  height: 80px;
  overflow: hidden;
  z-index: 100;
      background: light-dark(white, #121212);
    background-color: light-dark(white, #121212);

}


.btn {
    padding: 8px 12px;
    border-radius: 6px;
    cursor: pointer;
    transition: 0.3s;
    font-size: 12px;
    font-weight: var(--bold);
}

.btn-black {
    background-color: light-dark(var(--black), white);
    color: light-dark(white, black);
}

.container-top-title {

    padding-top: 64px !important;
    padding-bottom: 16px !important;

    .title-heading {
        font-weight: var(--bold);
        font-size: 48px;
    }

    .title-desc {
        font-size: var(--small);
        color: var(--gray);
    }
}

.box {
    border-radius: var(--box-radius);
    border: 1px solid var(--border);
    padding: 16px 12px;
    box-sizing: border-box;
    width: 100%;
    background-color: light-dark(#ffffff, #2d2d2d);

    .box-title {
        font-weight: var(--bold);
        font-size: var(--small);
    }

    .box-description {
        font-size: var(--description);
        color: var(--gray);
    }
}
#navbar-mobile {
    z-index: 1000;
    width: 100%;
    height: 56px;
    padding-bottom: 20px;

    position: fixed;
    bottom: 0;

    display: flex;
    flex-direction: row;
    justify-content: space-evenly;
    align-items: center;

    backdrop-filter: blur(10px);
    -webkit-backdrop-filter: blur(10px);
    background-color: light-dark(#ededed90, #2d2d2d);
    

}

.navbar-item {
    width: fit-content;
    text-align: center;
    opacity: 0.2;
    .navbar-icon {
        height: 20px;
    }

    .navbar-text {
        font-size: 8px;
        font-weight: 400;
        color: light-dark(black, white) !important;
    }
}

.navbar-selected {
    opacity: 1;
}



#footer-mobile {
    height: calc(56px + 20px + 32px);
    width: 100%;
    background-color: light-dark(white, #121212);
}



.input-div {
    width: 100%;
    padding: 4px 0;

    .input-label {
        font-size: 12px;
        color: light-dark(var(--black), white);
        padding: 4px 0;
        font-weight: 600;
    }

    .input-text {
        font-size: 16px;
        box-sizing: border-box;
        padding: 6px 12px;
        min-height: 36px;
        border-radius: 8px;
        border: 1px solid var(--border);
        background-color: light-dark(white, var(--dark-box));
        width: 100%;
        -webkit-appearance: none;
    }


}





.light {
    font-weight: 200;
}

.regular {
    font-weight: 400;
}

.bold {
    font-weight: 600;
}


.heading {
    font-size: 40px;
}

.large {
    font-size: 24px;
}

.medium {
    font-size: 16px;
}

.small {
    font-size: 12px;
}

.description {
    font-size: 8px;
}


html {
    overflow-x: hidden;
}

#container-mobile {
    min-height: 100dvh;
}

.container {
    width: calc(100% - 2 * 8px);

    margin: 0 auto;
    padding: 8px;

    box-sizing: border-box;

}

.container-buttons {
    display: flex;
    flex-direction: column;
    gap: 4px;

    .btn {
        text-align: center;
        font-size: var(--small);
        font-weight: var(--bold);
        border-radius: 8px;
    }
}


.tag-1 {
    background-color: #e57373 !important;
}

.tag-2 {
    background-color: #f06792 !important;
}

.tag-3 {
    background-color: #ba68c8 !important;
}

.tag-4 {
    background-color: #9575cd !important;
}

.tag-5 {
    background-color: #64b5f6 !important;
}

.tag-6 {
    background-color: #4fc3f7 !important;
}

.tag-7 {
    background-color: #4db6ac !important;
}

.tag-8 {
    background-color: #81c784 !important;
}

.tag-9 {
    background-color: #aed581 !important;
}

.tag-10 {
    background-color: #ffd54f !important;
}

.tag-11 {
    background-color: #ffb74d !important;
}

.tag-12 {
    background-color: #a1887f !important;
}

.tag-black {
    background-color: light-dark(black, white) !important;
}


@media (prefers-color-scheme: dark) {
    :root {
        --border: #00000000;

    }
    .navbar-icon {
        filter: invert(1);
    }

    .logo {
        filter: invert(1);
        opacity: 1;
    }

    .btn-add-icon {
        filter: invert(0) !important;
    }

    .container-menu-icon {
        filter: invert(1);
    }

    .btn-edit {
        filter: invert(1);
    }
}

.btn-add {
    position: fixed;
    bottom: calc(76px + 16px);
    right: 16px;
    background-color: light-dark(rgba(0, 0, 0, 1), rgba(255, 255, 255, 1));
    backdrop-filter: blur(3px);
    box-sizing: border-box;
    width: 64px;
    height: 64px;
    border-radius: 32px;
    display: grid;
    place-items: center;

    box-shadow: var(--shadow);

    .btn-add-icon {
        width: 24px;

        filter: invert(1);
    }
}

.btn-edit {
    padding: 8px;
    width: 16px;
    height: 16px;
    opacity: 0.6;
}