/* style.css */
.tab {
    border: 1px solid #ccc;
    padding: 10px;
}

.content {
    min-height: 200px;
    border: 1px solid #ccc;
    padding: 5px;
}

#tabs button {
    background-color: #f0f0f0;
    border: 1px solid #d0d0d0;
    padding: 5px 10px;
    cursor: pointer;
}

#tabs button.active {
    background-color: #ddd;
}
/* Basic Reset */
* {
    box-sizing: border-box;
    margin: 0;
    padding: 0;
}

body {
    font-family: 'Arial', sans-serif;
    line-height: 1.6;
    margin: 0;
    min-height: 100vh;
    display: flex;
    flex-direction: column;
    justify-content: space-between;
}

h1, h2 {
    text-align: center;
    padding: 20px;
}

h1 {
    margin-top: 20px;
    color: #333;
}

h2 {
    color: #666;
}

footer {
    text-align: center;
    padding: 20px;
    background-color: #f2f2f2;
    color: #333;
}

#htmlContent {
    display: block;
    width: 80%;
    margin: 20px auto;
    height: 300px;
}

/* CSS for styling buttons */
button {
    padding: 8px 16px; /* Adjust padding as needed */
    border: none;
    border-radius: 4px;
    cursor: pointer;
    margin-right: 10px; /* Add margin between buttons */
    background-color: #808080; /* Gray */
    color: white;
    width: auto; /* Set width to auto to make them not full-width */
}


/* CSS for specific button colors */
button.clean-btn {
    background-color: #4CAF50; /* Green */
    color: white;
}

button.copy-btn {
    background-color: #008CBA; /* Blue */
    color: white;
}

button.paste-btn {
    background-color: #9b59b6; /* Red */
    color: white;
}


#wysiwyg {
    flex: 1;
    flex-direction: column;
    justify-content: flex-start;
}

footer p {
    margin-top: 0;
}
