*{
    margin: 0px;
    padding: 0px;
    
}

#main {
    width: 100%;
    height: 100%;
    display: grid;
    grid-template-rows: 80px 32px 1fr 10%;
    background: #222222;

}

#app-title {
    padding-top:8px;
    width: 100%;
    height: 100%;
    text-align: center;
    font-size: 64px;
    font-family: 'zrnic', cursive;
    color: #de4d0b;
}

#add-video {
    width: 100%;
    height: 100%;
    text-align: center;
}

#add-video button{
    width: 20%;
    height: 32px;
    margin: 0px auto;
    background: none;
    border: 2px solid #55aa55;
    border-radius: 32px;
    color: #55aa55;
}


#video-list {
    width: 100%;
    height: 100%;
    overflow-y: scroll;
    overflow-x: hidden;
}

#import-prompt {
    display: inline;
    position: absolute;
    visibility: hidden;
    left: 30%;
    width: 406px;
    height: 306px;
    background: #333;
    color: #777;
    border: none;
    border-radius: 6px;
    box-shadow: 0px 3px 3px #00000099;
}


#import-prompt textarea {
    display: inline-block;
    position: relative;
    left: 3px;
    top: 3px;
    width: 394px;
    height: 220px;
    border: 2px solid #777;
    border-radius: 4px;
    background: #00000000;
}

#import-prompt textarea:active{
    border: 2px solid #fff;
    color: #fff;
    box-shadow: 0px 0px 3px #fff;
}

#import-prompt button {
    display: inline-block;
    position: relative;
    top: 3px;
    left: 3px;
    height: 77px;
    width: 394px;
    border: 2px solid #777;
    border-radius: 4px;
    background: #00000000;
    color: #777;
}

#import-prompt button:active{
    border: 2px solid #fff;
    color: #fff;
    box-shadow: 0px 0px 3px #fff;
    background: #ffffff55; 
}

.list-item {
    width: 80%;
    margin: 0px auto;
    display: grid;
    grid-template-columns: 30% 40% 30%;
    border: 2px solid #55aa55;
    border-radius: 7px;
    margin-top: 4px;
}

.list-item-title {
    width: 100%;
    height: 32px;
    line-height: 32px;
    font-size: 18px;
    margin-left: 4px;
    color: #fff;
    overflow: hidden;
}

.list-item-url {
    width: 100%;
    height: 32px;
    text-align: center;
    font-size: 12px;
    color: #de4d0b;
    line-height: 32px;
    margin-left: 4px;
}

.list-item-del-btn {
    width: 100px;
    height: 24px;
    margin-top: 4px;
    font-size: 16px;
    background: #222;
    border: 2px solid #777;
    border-radius: 5px;
    color: #ffffff;
}