/* Styles specific for Plain TXT Document */

textarea {
    background-color: #1f1f1f;
    border:none;
    border-radius: 20px;

    width: 100%;
    height:80vh;
    
    resize: none;

    padding: 15px;
    box-sizing: border-box;
    color:White;
    font-family: Comfortaa;
    transition: 0.4s;
}

textarea:focus{
    outline: 2px solid rgb(34, 34, 34);
}

#docTitle {
    background-color: #131313;
    border:none;
    border-radius: 20px;
    
    resize: none;

    padding:10px;
    box-sizing: border-box;
    color:White;
    font-family: Comfortaa;
    font-weight: 900;
    transition: 0.4s;
    font-size:17px;
    width: 20%;
    margin-bottom:5px;
}
#docTitle:focus{
    outline: 2px solid rgb(34, 34, 34);
}

button {
    background-color: #161616;
    cursor:pointer;
    padding:8px;
    border:none;
    color:white;
    border-radius: 10px;
    transition: 0.3s;
}

button:hover {
    background-color: #131313;
}

.popup {
    position: fixed;
    display: none;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: #131313;
    color:white;
    text-align: center;
    align-items: center;
    box-shadow: rgba(0, 0, 0, 0.35) 0px 5px 15px;
    width: 50%;
    border-radius: 25px;
    transition: 0.5s
}

.popup h1 {
    background-color: #0f0f0f;
    padding:10px;
}

.popup input {
    background-color: #0e0e0e;
    border:none;
    border-radius: 20px;
    
    resize: none;

    padding:10px;
    box-sizing: border-box;
    color:White;
    font-family: Comfortaa;
    font-weight: 900;
    transition: 0.4s;
    font-size:17px;
    width: 70%;
    margin-bottom:5px;
}
