body {
    font-family: 'Arial', sans-serif;
    background-color: #f4f4f4;
    margin: 0;
    padding: 20px;
}

.container-app {
    display: flex;
    width: 100%;
    margin: auto;
    background: white;
    padding: 5px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}



.left-nav {
    width: 230px;
    border-right: 1px solid #ddd;
    padding: 10px;
    flex-shrink: 0;
}

.nav-steps {
    list-style: none;
    padding: 0;
}

.nav-link {
    display: block;
    padding: 10px 15px;
    text-decoration: none;
    color: white;
    background-color: #3758f9; /* Primary Green */
    border-radius: 4px;
    margin-bottom: 5px;
}

.nav-link:hover {
    background-color: #2c46c7; /* Darker Green for Hover */
}

.nav-link.inactive {
    background-color: #7a8ef9; /* Lighter Green for Inactive State */
}



.main-content {
    flex-grow: 1;
    padding-left: 20px;
}

.step {
    display: none;
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
}

.step-header {
    font-size: 1.5em;
    color: #333;
    margin-bottom: 10px;

}

.step-footer {
    display: inline-block;
    font-size: 1.2em;
    color: #333;
    text-align: right;
    width: 100%;

}
.step.active {
    display: block;
}

h1 {
    color: #333;
    text-align: center;
    font-size: 2em;
    margin-bottom: 0.5em;
}

h2 {
    color: #444;
    font-size: 1.5em;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

h3 {
    color: #555;
    font-size: 1.2em;
    font-weight: bold;
    margin-top: 1em;
    margin-bottom: 0.5em;
}

.keyword-section, .keyword-analysis, .article-settings-section, .title-generation, .article-outline, .content-generation, .wordpress-integration, .internal-links {
    margin-bottom: 30px;
    padding: 15px;
    border: 1px solid #ddd;
    border-radius: 8px;
    background-color: #fafafa;
}

input[type="text"], input[type="password"], textarea {
    width: 100%;
    padding: 8px;
    margin: 8px 0;
    display: inline-block;
    border: 1px solid #ccc;
    border-radius: 4px;
    box-sizing: border-box;
}

button {
    width: 200px;
    background-color: #3758f9;
    color: white;
    padding: 14px 20px;
    margin: 8px 0;
    border: none;
    border-radius: 4px;
    cursor: pointer;
    display: block;
    margin-left: auto;
    margin-right: auto;
}

button:hover {
    background-color: bg-blue-dark;
    hover:border-blue-dark;
    hover:bg-blue-dark;
}

button.btn:disabled {
    background-color: #cccccc; /* Light gray background */
    color: #666666; /* Darker gray text */
    cursor: not-allowed;
}

#keyword-suggestions, #title-list {
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 10px;
    height: 150px;
    overflow-y: auto;
}

#article-content {
    border: 1px solid #ddd;
    padding: 10px;
    margin-top: 10px;
    height: 1000px;
    overflow-y: auto;
}

.title-item.selected {
    background-color: #e0e0e0;
    border-radius: 4px;
    padding: 5px;
    margin: 5px 0;
}

.title-item:hover {
    background-color: #f0f0f0;
    cursor: pointer;
}



.keyword-analysis:after {
    content: "";
    display: table;
    clear: both;
}

.article-settings {
    display: flex;
    justify-content: space-between;
}

.settings-column {
    flex-basis: 48%;
    padding: 10px;
}

.settings-column label {
    display: flex;
    align-items: center;
    margin-top: 10px;
}

.settings-column label input[type="checkbox"] {
    margin-right: 10px;
}

.settings-column select {
    width: 100%;
    margin-top: 5px;
}

.settings-facts {
    width: 100%;
    padding: 10px;
    margin-top: 15px;
}

.settings-facts label {
    display: block;
    margin-bottom: 5px;
}

.settings-facts textarea {
    width: 100%;
    padding: 8px;
    border: 1px solid #ccc;
    border-radius: 4px;
    min-height: 100px;
}

.outline-item {
    list-style: none;
    padding: 5px;
    border: 1px solid #ddd;
    margin-bottom: 5px;
    background-color: #fafafa;
    cursor: move;
}

.delete-item {
    float: right;
    cursor: pointer;
    color: red;
}

.delete-item:hover {
    color: darkred;
}



.button-group {
    display: flex;
    align-items: center;
    margin-left: auto;
}

.content-generation {
    display: flex;
    flex-direction: column;

}

.button-container {
    display: flex;
    justify-content: space-between;
    align-items: center;
    margin-bottom: 20px; /* Gives some space between the buttons and the editor */
    padding-left: 0px;
    align-items: center;
}

.right-buttons {
    display: flex; /* Ensures Save Article and Save as... are side by side */
}

.editable {
    border: 1px dashed #ccc;
    padding: 10px;
    margin-bottom: 10px;
}

.back-btn, .proceed-btn {
    margin: 10px;
    padding: 5px 15px;
    border: 1px solid #ccc;
    background-color: #f4f4f4;
    cursor: pointer;
}

.back-btn:hover, .proceed-btn:hover {
    background-color: #e0e0e0;
}

.title-actions {
    display: flex;
    align-items: center; /* Aligns items vertically in the center */
    justify-content: center;
    gap: 10px; /* Space between items */
}

.title-actions button, .title-actions input[type="text"] {
    flex-grow: 0; /* Prevents buttons and input from growing */
    margin: 0; /* Removes any default margin */
}

.title-actions input[type="text"] {
    flex-grow: 1; /* Allows input to take up available space */
}

#new-title-input {
    max-width: 250px;
    flex-grow: 1;
}


.file {
    display: flex;
    align-items: center; /* This will vertically center the items */
    border: 1px solid #ddd;
    padding: 10px;
    margin-bottom: 10px;
}

.file img {
    max-width: 150px;
    max-height: 150px;
    margin-right: 10px;
    flex-shrink: 0;
}

.file-details {
    display: flex;
    flex-direction: column;
    justify-content: center; /* Centers content vertically within the container */
}

.file-details h3 {
    margin: 0;
    /* Additional styling for h3 if needed */
}


#notification-bar {

    width: 100%;
    z-index: 1000; /* Make sure it's on top of other content */
}

.notification-message {
    padding: 10px;
    margin: 5px;
    color: black;
    font-size: 16px;
    position: relative;
    display: block;
    box-sizing: border-box;
}

.notification-close {
    position: absolute;
    top: 0;
    right: 0;
    padding: 5px 10px;
    cursor: pointer;
    color: #000000;
}
