    ::placeholder {

        color: rgb(177, 177, 177);
    }
    div {
        position: relative;
        height: auto;
    }
    
/* Ideas Button */
#ideas-btn {

    position: fixed;
    display: block;
    bottom: 0.5cm;
    right: 0.5cm;
    
    width: 50px;
    height: 50px;

    background-color: white;
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: gray;

    box-shadow: 0px 1px 5px rgba(0,0,0, 0.5);
    cursor: pointer;
}
    #ideas-btn img {

        position: fixed;
        right: 27px;
        bottom: 25px;

        width: 35px;
        height: 40px;

        filter: brightness(0.8);
    }    

/* Hide / Show Button */
.hide-or-show-btn {

    position: absolute;
    display: block;
    top: 0px;
    margin-left: 0.3cm;
    
    width: 35px;
    height: 35px;

    background-color: rgb(114, 101, 252);
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: white;

    box-shadow: 0px 1px 5px rgba(0,0,0, 0.5);
    cursor: pointer;
}
    .hide-or-show-btn img {

        position: relative;
        left: -2px;
        margin-top: 2px;

        width: 25px;
        height: 15px;

        filter: brightness(10);
    }

.remove-btn {

    position: absolute;
    display: block;
    top: 0px;
    margin-left: 0.3cm;
    
    width: 35px;
    height: 35px;

    background-color: rgb(255, 78, 78);
    border-radius: 8px;
    border-style: solid;
    border-width: 1px;
    border-color: white;

    box-shadow: 0px 1px 5px rgba(0,0,0, 0.5);
    cursor: pointer;
    transition: 0.2s;
}
.remove-btn:hover {
    background-color: rgb(207, 63, 63);
}
    .remove-btn img {

        position: relative;
        left: 0px;
        top: 0px;

        width: 15px;
        height: 19px;

        filter: brightness(10);
    }

.add-btn {

    position: relative;
    display: block;
    
    margin-left: 1.4cm;
    
    width: 9cm;
    height: 40px;

    background-color: #5a76e4;
    border-radius: 8px;
    border: none;

    box-shadow: 0px 1px 5px rgba(0,0,0, 0.5);

    font-family: Arial;
    font-weight: normal;
    font-size: 18px;
    color: rgb(255, 255, 255);
    cursor: pointer;
    transition: 0.2s;
}
.add-btn:hover {
    background-color: #4f68c9;
}


/* Body Content */
#main-list-view {

    position: relative;

    width: 11.9cm;
    height: auto;

    margin: 0 auto;    
}
#init-div {

    position: fixed;
    top: 2cm;

    padding: 0.5cm 0;

    width: 100%;
    max-width: 500px; 
    height: 4cm; 

    left: 50%;
    margin-left: -250px;

    /* background-color: rgb(254, 254, 225); */

    z-index: 2;
    transition: 0.2s;
}
#init-div div {
    margin-left: 28px;
}
    #init-div h2 {

        display: inline-block;
        
        width: 11.2cm;

        left: 50%;
        margin-left: -210px;

        font-family: Arial;
        font-size: 22px;

        text-align: center;
        color: rgba(94, 94, 94, 0.358);
    }

    #init-div p {

        display: inline-block;
        
        width: 11cm;
        height: auto;

        left: 50%;
        margin-left: -210px;

        font-family: Arial;
        font-weight: normal;
        font-size: 18px;

        box-shadow: 0px 1px 5px rgba(0,0,0, 0);

        text-align: center;
        color: rgba(119, 119, 119, 0.55);
    }
    .shadow-on {

        /* background-color: rgb(240, 240, 106) !important; */

        transform: translateY(10px);

        filter: opacity(0);
        /* transition: visibilty 0.5s; */
        transition-delay: 5s;
    }
        .shadow-on h2 {

            /* background-color: rgb(240, 240, 106) !important; */

            transform: translateY(-5cm);

            filter: opacity(0);
            transition: 0.5s;
        }
        .shadow-on p {

            /* background-color: rgb(240, 240, 106) !important; */

            transform: translateY(-5cm);

            filter: opacity(0);
            transition: 0.5s;
        }

.card {

    position: relative;
    display: block;
    /* margin-top: 2.8cm; */

    padding: 10px;

    width: 11.2cm;
    height: auto;

    border-radius: 8px;
    border-width: 2px;
    border-style: solid;
    border-color: rgb(255, 255, 255);

    background-color: rgba(255, 255, 255);
    box-shadow: 0px 1px 5px rgba(0,0,0, 0.8);
}
.card h1 {

    position: absolute;

    font-family: Arial;
    font-size: 20px;
    font-weight: normal; 
    color: rgba(0, 0, 0, 0.8);

    text-shadow: 0px 1px 3px rgba(0,0,0, 0.2);
}
    .parent-card-display {
        margin-bottom: 20px;
    }
    .parent-card {
        /* defaults */
        max-height: 0px;
        opacity: 0;
    }
    .sub-card-display {
        margin-bottom: 0px;
        transition: 0.5s;
    }
    .sub-card {

        display: block;
        padding: 10px;
        left: 1.7cm;
        width: 9.2cm;
        height: auto;

        border-radius: 8px;
        border-width: 2px;
        border-style: solid;
        border-color: rgb(255, 255, 255);

        background-color: rgba(255, 255, 255);
        box-shadow: 0px 1px 5px rgba(0,0,0, 0.8);
    }
    .sub-card h1 {

        position: absolute !important;

        font-family: Arial;
        font-size: 20px;
        font-weight: normal; 
        color: rgba(0, 0, 0, 0.8);

        text-shadow: 0px 1px 3px rgba(0,0,0, 0.2);
    }
    .opt-box {

        position: relative;

        padding: 5px;

        width: 7.5cm;
        height: auto;

        border-radius: 4px;
        border-width: 1px;
        border-style: solid;
        border-color: rgb(0, 0, 0);

        background-color: rgb(255, 255, 255);

        font-family: Arial;
        font-weight: bold;
        font-size: 20px;
        color: rgba(0, 0, 0, 0.8);

        cursor: pointer;
    }
    /* field-wrap class related */
    .field-wrap {
        position: relative;
        display: grid;
    }
    .field-wrap::after {
        content: attr(replicated-value) " ";
        white-space: pre-wrap;
        visibility: hidden;
    }
    .field-wrap > textarea {
        resize: none;
        overflow: hidden;
        /* overflow-y: visible; */
    }
    .field-wrap > textarea, .field-wrap::after {
        border: 1px solid rgb(0, 0, 0);
        border-radius: 4px;
        padding: 0.5rem;
        min-height: 86px;
        font: 20px Arial;

        grid-area: 1 / 1 / 2 / 2;
    }
    /* field-wrap class related */
    .parcard-field-wrap {
        position: relative;
        display: grid;
    }
    .parcard-field-wrap::after {
        content: attr(replicated-value) " ";
        white-space: pre-wrap;
        visibility: hidden;
    }
    .parcard-field-wrap > textarea {
        resize: none;
        overflow: hidden;
    }
    .parcard-field-wrap > textarea, .parcard-field-wrap::after {
        border: 1px solid rgb(0, 0, 0);
        border-radius: 4px;
        padding: 0.5rem;
        min-height: 50px;
        font: 20px Arial;

        grid-area: 1 / 1 / 2 / 2;
    }

    /* Copy Buttons */
    .maincard-copy-btn {
        position: absolute;
        padding: 0;
        top: 11px;
        right: 13px;
        background: none;
        border: none;
    }
        .maincard-copy-btn img {
            position: relative;
            padding: 0px 10px;
                padding-top: 7px;
                padding-bottom: 7px;
            width: 17px;
            height: 22px; 
            border-radius: 5px;
            cursor: pointer;
            transition: 0.1s;
        }
        .maincard-copy-btn img:hover {
            filter:brightness(3);
            background-color: rgba(0, 0, 0, 0.3);
        }
.NOCS-lbl {
    position: relative;
    margin: 8px 0px;
    margin-top: 15px;
    font-family: Arial;
    font-size: 15px;
    text-align: left;
}

#footer {
    display: block;
    position: relative;
    margin: 0 auto;
    margin-top: 2cm;
    padding: 15px;
    height: auto;
    border: none;
    border-radius: 7px;
    background-color: rgb(50, 50, 70);
    
    color: rgba(255, 255, 255, 0.5);
    font: 12px Arial;
    text-align: center;

    z-index: 4;
}

/* List View */
ul {
    position: relative;
    display: block;

    width: auto;
    height: auto;

    list-style: none;
    padding-left: 0cm;
}
ul li {

    width: auto;
    height: 1.5cm;
    
}
ul li:not(:first-child) {

    display: block;
    margin: 0;
    margin-top: 0.5cm;
    margin-bottom: 1cm;
}
#init-list li:first-child {
    margin-bottom: 1cm;
}
#wc-ul li {

    width: auto;
    height: 1.5cm;
    margin-bottom: 0.5cm;
}
