/* Your CSS styles go here */
#word-counter-container {
    margin-top: 20px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
}

#text-input {
    background-color:#fff;
    border: 1px dashed sandybrown;
    color: black;
    font-size: 16px;
    font-family: 'Lucida Sans', 'Lucida Sans Regular', 'Lucida Grande', 'Lucida Sans Unicode', Geneva, Verdana, sans-serif;
    border-radius: 8px;
    transition: .5s;
    resize: vertical;
    height: 300px;
    width: 80%;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

#text-input:hover {
    border: 1px solid green;
}

#text-input:focus {
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),0 7px 50px 0 rgba(0,0,0,0.19);
}

#detail-information-below {
    background-color:#fff;
    border: 1px dashed sandybrown;
    color: black;
    font-size: 18px;
    border-radius: 8px;   
    width: 80%;
    margin: 20px auto;
    padding: 10px;
    font-weight: 300;
    transition: .5s;
}

#detail-information-below:hover {
    background-color: #343a40;
    color: #fff;
    box-shadow: 0 12px 16px 0 rgba(0, 0, 0, 0.24),0 7px 50px 0 rgba(0,0,0,0.19);
    border: 1px solid #343a40;
}

.table-title {
    margin: auto;
    width: 80%;
    text-align: left;
    transition: 1s;
}

.table-title:hover {
    width: 90%;
}

.table-title h2{
    font-size: 16px;
    font-weight: 500;
    background-color: green;
    color: #fff;
    padding: 10px;
    width: 190px;
    border-radius: 8px;
    box-shadow: 3px 3px 10px 2px #888888;
}

.word-counter-table {
    width: 80%; 
    margin: 20px auto; 
    border: 1px solid sandybrown;  
    border-radius: 8px;
}

.word-counter-table th,
.word-counter-table td {
    text-align: left;
    padding: 8px;
    font-size: 14px;
    font-weight: 400;
}

.word-counter-table th {
    background-color: #fff;
    width: 200px;
    font-weight: 500px;
}

th:hover {
    background-color: #343a40;
    color: #fff;
}

tr:hover {
    background-color: #f16e00;    
}

#keyword-density-table th {
    background-color: green;
    color: #fff;
    text-align: center;
    font-size: 18px;
    font-weight: 600;
    border-radius: 8px;
    margin-right: 5px;
}

#keyword-density-table {
    border: none;
}

/*Buttons Css*/

#button-container {
    margin: auto;
    margin-bottom: 20px;
    padding-right: 10px;
    background-color: #ffffff;
    text-align: center;  
}

.btn-class {
    background-color:#343a40;
    color:white;
    border-radius: 5px;
    padding: 10px;
    font-size: 12px;
    width: 110px;
    transition: .5s;
    margin-bottom: 5px;
    font-weight: 600;
}

.btn-class:hover {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
    border: none;
    background-color: rgb(240, 108, 0)
}

.keyword-btn-container {
    margin: 10px;
    padding-right: 10px;
    background-color: #ffffff;
    text-align: center;
}

/*Find Popup*/
.popup {
    display: none;
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
}

#find-text-input {
    border-radius: 8px;
    transition: 0.5s;
}

#find-text-input:focus {
    box-shadow: 0 12px 16px 0 rgba(0,0,0,0.24),0 17px 50px 0 rgba(0,0,0,0.19);
}
.popup-content {
    position: absolute;
    top: 20%;
    left: 50%;
    transform: translate(-50%, -50%);
    background-color: rgba(0, 224, 240, 0.7);
    padding: 20px;
    border-radius: 8px;
}

.close-popup-btn {
    position: absolute;
    top: 10px;
    right: 10px;
    font-size: 20px;
    cursor: pointer;
}