.container, h1 {
    color: #fff;
}
.error {
    color: red;
}
.dashboard-menu {
    width: 23.5%;
    margin-right: 2%;
    float: left;
}
.account-user, .paste-info {
    background: #1d1e3a;
    padding: 20px;
    margin-bottom: 20px;
    border-radius: 10px;
}
.account-menu li a {
    font-weight: 600;
    color: #fff;
    margin: 5px 0;
    display: block;
}
.account-user {
    text-align: center;
}
.dashboard-content {
    width: 74.5%;
    float: left;
}
.textarea-container {
    position: relative;
    display: flex;
    padding: 0;
    border-radius: 10px;
    background-color: #1d1e3a;
    overflow: hidden;
}
.textarea-line-numbers {
    position: absolute;
    top: 0;
    left: 0;
    bottom: 0;
    width: 40px;
    background: #1d1e3a;
    color: #858585;
    text-align: right;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    box-sizing: border-box;
    overflow: hidden;
}
.textarea-container textarea {
    margin-left: 40px;
    width: calc(100% - 40px);
    height: 500px;
    background: transparent;
    color: #fff;
    border: none;
    padding: 10px;
    font-size: 14px;
    line-height: 1.5;
    resize: none;
    box-sizing: border-box;
    font-family: monospace;
}

.paste-info p {
    margin-top: 10px;
}

.paste-info{
    overflow: hidden;
}

.paste-info li{
    width: 50%;
    float: left;
    margin-bottom: 10px;
}

.paste-info li:nth-child(3n), .paste-info li:nth-child(4n){
    margin-bottom: 0;
}

.paste-info li a{
    color: #fff;
    text-decoration: underline;
    display: block;
}

.paste-info .li1 a{
    background: url(/media/img/copyurl.svg) no-repeat center left;
    background-size: 20px;
    padding-left: 30px;
}

.paste-info .li2 a{
    background: url(/media/img/viewraw.svg) no-repeat center left;
    background-size: 20px;
    padding-left: 30px;
}

.paste-info .li3 a{
    background: url(/media/img/copytext.svg) no-repeat center left;
    background-size: 20px;
    padding-left: 30px;
}

.paste-info .li4 a{
    background: url(/media/img/download.svg) no-repeat center left;
    background-size: 20px;
    padding-left: 30px;
}

.passwordcontainer{
    max-width: 500px;
    margin: auto;
}

.paste-views{    
    background: url(/media/img/paste-views.svg) no-repeat top left;
    background-size: 20px;
    padding-left: 30px;
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 14px;
}

