.main-html {
    height: 100%;
    margin-bottom: 10px;
}
.sub-title {
    font-size: 16px;
    margin-left: 5px;
}
.source-heading-area {
    /* display: flex;
    gap: 10px;
    background: #cfcfcf;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    overflow: hidden; */
    display: flex;
    gap: 10px;
    background: #cfcfcf;
    width: 100%;
    height: 50px;
    margin-top: 10px;
    margin-left: 10px;
    margin-right: 10px;
    overflow: hidden;
    flex-direction: row;
    flex-wrap: nowrap;
    align-content: stretch;
    justify-content: space-evenly;
}
.source-heading-title {
    color: rgb(143, 8, 148);
    padding: 5px;
    /* font-family: Georgia, 'Times New Roman', Times, serif; */
    font-weight: bolder;
    font-size: 20px;
    margin-left: 10px;
    margin-top: 5px;
}
.source-heading-buttons {
    margin-left: 10px;
    margin-top: 8px;
}
/* .btn {
    font-size: 16px;
    padding: 10px 20px;
    text-transform: uppercase;
    letter-spacing: 1px;
    cursor: pointer;
    margin: 5px;
}
.tbtn {
    background-color: green;
    color: white;
    font-weight: bold;
    text-decoration: none;
    margin-left: 10px;
}
.btn:hover {
   background-color: rgb(166, 75, 241);
   transition: all 1s ease-in-out;
} */
.source-area {
    display: grid;
    grid-template-columns: 1.2fr 1fr;
}
.source-html {
    border: 2px solid blue;
    height: 500px;
    margin: 10px;
    padding: 10px;
    overflow: scroll;
}
.source-info {
    border: 2px solid blue;
    height: 500px;
    margin: 10px;
    padding: 10px;
    overflow: auto;
    
}

.editor {
    /* border: 1px solid #ccc; */
    padding: 15px;
    min-height: 300px;
    margin-top: 10px;
    border-radius: 5px;
    background-color: white;
    margin-bottom: 10px;
}

.editor:empty:before {
    content: "Add HTML Code Here....";
    color: #888;
}
.anlysis-title {
    text-align: center;
    font-family: Cambria, Cochin, Georgia, Times, 'Times New Roman', serif;
    margin-bottom: 10px;
    font-size: 29px;
}
footer {
    margin-top: 10px;
}
 
.md-main {
    display: grid;
    grid-template-columns: auto;
    grid-template-rows: 50px 1fr;
}
.btn-actions {
    display: flex;      
    gap: 10px;   
    background-color: #f1caee;
    box-shadow: 1px 1px 10px 1px rgb(150, 146, 160);   
    align-items: center; 
    /* justify-content: center; */
    margin: 5px;
}
.btn-actions label {
    background-color: blueviolet;
    width: 80px;
    text-align: center;
    color: white;
    padding: 8px;
    cursor: pointer;
}
.btn-actions label:hover {
    color:blue;
    background-color: white;
    transition: all 1s ease-in-out;
}
.tag-info {
    display: flex;
    gap: 10px;
    flex-direction: column;
    width: 100%;
    height: 100%;
    margin-top: 20px;
    border: 1px solid rgb(81, 81, 83);
    box-shadow: 1px 1px 10px 1px rgb(150, 146, 160);
    padding: 10px;
}

 .details-textarea {
    background-color: white;
    border: 0px;
 }
 
 @media (max-width: 768px) {
    .source-heading-area {
        height: 80%;
        display: grid;
        grid-template-columns: 1fr 1fr;
        align-items: center;
        padding-bottom: 10px;
        
    }
    .source-heading-buttons {
        display: grid;
        grid-template-columns: 1fr;
        gap: 10px;
        padding-right: 10px;
    }
    #ContentText {
        display: lin; 
        float: left; 
        margin:0px !important;
    }
 }