/* General Styles */
body {
    font-family: 'Arial', sans-serif;
    margin: 0;
    padding: 0;
    background-color: #ffffff;
    color: #333;
    line-height: 1.6;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header Styles */
header {
    background-color: #630783;
    color: #fff;
    padding: 20px 0;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
}

header h1 {
    margin: 0;
    font-size: 2rem;
}

header nav ul {
    list-style: none;
    margin: 0;
    padding: 0;
    display: flex;
    gap: 20px;
}

header nav ul li {
    display: inline;
}

header nav ul li a {
    color: #fff;
    text-decoration: none;
    font-weight: bold;
    transition: color 0.3s ease;
}

header nav ul li a:hover {
    color: #ffdd57;
}

/* Hero Section */
.hero {
    background-color: #630783;
    color: #fff;
    padding: 100px 0;
    text-align: center;
}

.hero h2 {
    font-size: 2.5rem;
    margin-bottom: 20px;
    animation: fadeIn 2s ease-in-out;
}

.hero p {
    font-size: 1.2rem;
    margin-bottom: 30px;
    animation: fadeIn 2.5s ease-in-out;
}

.cta-button {
    background-color: #ffdd57;
    color: #333;
    padding: 10px 20px;
    text-decoration: none;
    border-radius: 5px;
    font-weight: bold;
    transition: background-color 0.3s ease, transform 0.3s ease;
}

.cta-button:hover {
    background-color: #ffcc00;
    transform: scale(1.1);
}

/* About Section */
.about {
    padding: 60px 0;
    background-color: #fff;
}

.about h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.about p {
    text-align: center;
    max-width: 800px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

/* Features Section */
.features {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.features h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.feature-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.feature {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
}

.feature:hover {
    transform: translateY(-10px);
}

.feature h3 {
    font-size: 1.5rem;
    margin-bottom: 10px;
}

.feature p {
    font-size: 1rem;
    line-height: 1.6;
}

/* How It Works Section */
.how-it-works {
    padding: 60px 0;
    background-color: #fff;
}

.how-it-works h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.how-it-works ol {
    max-width: 600px;
    margin: 0 auto;
    font-size: 1.1rem;
    line-height: 1.8;
}

.how-it-works ol li {
    margin-bottom: 10px;
}

/* Testimonials Section */
.testimonials {
    padding: 60px 0;
    background-color: #f4f4f4;
}

.testimonials h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 40px;
}

.testimonial-list {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.testimonial {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 5px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease;
}

.testimonial:hover {
    transform: translateY(-10px);
}

.testimonial p {
    font-size: 1rem;
    line-height: 1.6;
}

.testimonial h4 {
    font-size: 1.2rem;
    margin-top: 10px;
}

/* Contact Section */
.contact {
    padding: 60px 0;
    background-color: #fff;
}

.contact h2 {
    text-align: center;
    font-size: 2rem;
    margin-bottom: 20px;
}

.contact form {
    max-width: 600px;
    margin: 0 auto;
    display: flex;
    flex-direction: column;
    gap: 10px;
}

.contact input,
.contact textarea {
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 1rem;
}

.contact button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-weight: bold;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.contact button:hover {
    background-color: #0056b3;
}

/* Footer */
footer {
    background-color: #333;
    color: #fff;
    padding: 20px 0;
    text-align: center;
}

footer p {
    margin: 0;
    font-size: 0.9rem;
}

/* Animations */
@keyframes fadeIn {
    from {
        opacity: 0;
    }
    to {
        opacity: 1;
    }
}

/* Additional CSS for the dashboard */
.dashboard-container {
    max-width: 1200px;
    margin: 0 auto;
    padding: 20px;
}

.dashboard-section {
    background: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    margin-bottom: 20px;
}

.dashboard-section h2 {
    margin-bottom: 20px;
    color: #007BFF;
}

.form-group {
    margin-bottom: 15px;
}

.form-group label {
    display: block;
    margin-bottom: 5px;
    font-weight: bold;
}

.form-group input, .form-group textarea {
    width: 100%;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.form-group textarea {
    resize: vertical;
    min-height: 150px;
}

.toggle-switch {
    display: flex;
    align-items: center;
    margin-bottom: 15px;
}

.toggle-switch input {
    margin-right: 10px;
}

.credit-balance {
    font-size: 18px;
    font-weight: bold;
    color: #28a745;
}

.generate-button {
    background-color: #007BFF;
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
}

.generate-button:hover {
    background-color: #0056b3;
}

.article-display {
    background: #f9f9f9;
    padding: 20px;
    border-radius: 5px;
    border: 1px solid #ddd;
}
/* Loading Spinner */
.loading-spinner {
    display: none; /* Hidden by default */
    position: fixed;
    top: 50%;
    left: 50%;
    transform: translate(-50%, -50%);
    z-index: 1000;
}

.spinner {
    border: 8px solid #f3f3f3; /* Light grey */
    border-top: 8px solid #3498db; /* Blue */
    border-radius: 50%;
    width: 60px;
    height: 60px;
    animation: spin 1s linear infinite;
}

@keyframes spin {
    0% { transform: rotate(0deg); }
    100% { transform: rotate(360deg); }
}

/* Overlay */
.overlay {
    display: none; /* Hidden by default */
    position: fixed;
    top: 0;
    left: 0;
    width: 100%;
    height: 100%;
    background: rgba(0, 0, 0, 0.5); /* Semi-transparent black */
    z-index: 999;
}

/* Dashboard Sections */
#google-rankings, #google-analytics, #google-lighthouse, #backlinks, #search-console {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

#google-rankings p, #google-analytics p, #google-lighthouse p, #backlinks p, #search-console p {
    margin: 5px 0;
    font-size: 14px;
}

.dashboard-section h2 {
    margin-bottom: 20px;
    color: #007BFF;
}

/* Backlinks Section */
.backlinks-container {
    display: flex;
    gap: 20px;
    margin-top: 15px;
}

.citation-flow, .backlinks-dates {
    background: #f9f9f9;
    padding: 15px;
    border-radius: 10px;
    border: 1px solid #ddd;
    flex: 1;
}

.citation-flow h3, .backlinks-dates h3 {
    margin-bottom: 10px;
    color: #007BFF;
    font-size: 18px;
}

.new-lost-links h4 {
    margin-bottom: 5px;
    color: #333;
    font-size: 16px;
}

.links-status {
    display: flex;
    gap: 10px;
}

.new-links, .lost-links {
    padding: 5px 10px;
    border-radius: 5px;
    font-size: 14px;
}

.new-links {
    background-color: #d4edda; /* Light green for new links */
    color: #155724; /* Dark green text */
}

.lost-links {
    background-color: #f8d7da; /* Light red for lost links */
    color: #721c24; /* Dark red text */
}

.backlinks-dates ul {
    list-style: none;
    padding: 0;
    margin: 0;
}

.backlinks-dates ul li {
    margin-bottom: 5px;
    font-size: 14px;
    color: #333;
}

/* Typed Text Effect */
.typed-text {
    font-weight: bold;
    color: #ffffff;
}

#typed {
    font-weight: bold;
    color: #ffffff;
}

.typed-cursor {
    display: inline-block;
    width: 2px;
    height: 24px;
    
    margin-left: 5px;
    animation: blink 1s infinite;
}

@keyframes blink {
    0%, 50% {
        opacity: 1;
    }
    51%, 100% {
        opacity: 0;
    }
}

/* Features Section */
.features-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.features-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.features-section .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.features-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr); /* 3 columns */
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.feature {
    background-color: #000000;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: left;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.feature:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.feature h3 {
    font-size: 20px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
    line-height: 1.4;
}

.feature p {
    font-size: 16px;
    color: #e723ff;
    line-height: 1.6;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .features-grid {
        grid-template-columns: repeat(2, 1fr); /* 2 columns on tablets */
    }
}

@media (max-width: 768px) {
    .features-grid {
        grid-template-columns: 1fr; /* 1 column on mobile */
    }
}

/* FAQ Section */
.faq-section-sag {
    background-color: #000000; /* Black background */
    color: #ffffff; /* White text */
    padding: 80px 20px;
}

.faq-container-sag {
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.faq-title-sag {
    font-size: 36px;
    font-weight: 600;
    text-align: center;
    margin-bottom: 40px;
    color: #ffffff; /* White text */
}

.faq-rows-sag {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.faq-item-sag {
    border-bottom: 1px solid #333; /* Subtle divider */
    padding-bottom: 20px;
}

.faq-question-sag {
    font-size: 20px;
    font-weight: 600;
    color: #ffffff; /* White text */
    cursor: pointer;
    display: flex;
    align-items: center;
    gap: 10px;
}

.faq-icon-plus-sag,
.faq-icon-minus-sag {
    width: 20px;
    height: 20px;
    fill: #e723ff; /* Purple icons */
}

.faq-icon-minus-sag {
    display: none; /* Hidden by default */
}

.faq-item-sag.active .faq-icon-plus-sag {
    display: none; /* Hide plus icon when active */
}

.faq-item-sag.active .faq-icon-minus-sag {
    display: block; /* Show minus icon when active */
}

.faq-answer-sag {
    font-size: 16px;
    color: #ffffff; /* White text */
    margin-top: 10px;
    line-height: 1.6;
    display: none; /* Hidden by default */
}

.faq-item-sag.active .faq-answer-sag {
    display: block; /* Show answer when active */
}

/* Pricing Page Styles */
.pricing-section {
    padding: 80px 20px;
    background-color: #ffffff;
    text-align: center;
}

.pricing-section h2 {
    font-size: 36px;
    color: #333;
    margin-bottom: 20px;
    font-weight: 600;
    line-height: 1.3;
}

.pricing-section .subtitle {
    font-size: 18px;
    color: #666;
    margin-bottom: 60px;
    max-width: 800px;
    margin-left: auto;
    margin-right: auto;
    line-height: 1.6;
}

.pricing-table {
    display: flex;
    justify-content: center;
    gap: 30px;
    max-width: 1200px;
    margin: 0 auto;
    padding: 0 20px;
}

.pricing-plan {
    background-color: #000000;
    padding: 25px;
    border-radius: 10px;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    text-align: center;
    flex: 1;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.pricing-plan:hover {
    transform: translateY(-5px);
    box-shadow: 0 6px 12px rgba(0, 0, 0, 0.15);
}

.pricing-plan h3 {
    font-size: 24px;
    color: #ffffff;
    margin-bottom: 15px;
    font-weight: 600;
}

.pricing-plan p {
    font-size: 18px;
    color: #e723ff;
    margin-bottom: 20px;
}

.pricing-plan .price {
    font-size: 36px;
    color: #ffffff;
    font-weight: 700;
    margin-bottom: 20px;
}

.pricing-plan .price span {
    font-size: 18px;
    color: #e723ff;
}

.pricing-plan button {
    background-color: #e723ff;
    color: #ffffff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: 600;
    cursor: pointer;
    transition: background-color 0.3s ease;
}

.pricing-plan button:hover {
    background-color: #c41de0;
}

/* Responsive Design */
@media (max-width: 1024px) {
    .pricing-table {
        flex-direction: column;
        align-items: center;
    }

    .pricing-plan {
        width: 80%;
        max-width: 400px;
    }
}

/* Error Message Styles */
.error-message {
    text-align: center; /* Center the text */
    color: red; /* Red color for error messages */
    margin-bottom: 20px; /* Add some space below the error message */
    font-size: 16px; /* Adjust font size as needed */
    font-weight: bold; /* Make the error message bold */
}

/* Zero Credit Message Styles */
.zero-credit-message {
    text-align: center; /* Center the message */
    background-color: #fff3cd; /* Light yellow background */
    color: #856404; /* Dark yellow text */
    padding: 15px; /* Add padding */
    border-radius: 5px; /* Rounded corners */
    border: 1px solid #ffeeba; /* Light yellow border */
    margin-bottom: 20px; /* Add space below the message */
    font-size: 16px; /* Adjust font size */
    font-weight: bold; /* Make the message bold */
}

/* Keyword Input Group */
.keyword-input-group {
    display: flex;
    gap: 10px;
    align-items: center;
}

.keyword-input-group input {
    flex: 1;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    font-size: 16px;
}

.generate-title-button {
    background-color: #e723ff; /* Attractive purple color */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.generate-title-button:hover {
    background-color: #c41de0; /* Darker purple on hover */
}

/* Article Options Buttons */
.article-options {
    display: flex;
    gap: 10px;
    margin-top: 20px;
}

.option-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.option-button.html-format {
    background-color: #007BFF; /* Blue for HTML format */
    color: #fff;
}

.option-button.html-format:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.option-button.plain-text {
    background-color: #28a745; /* Green for plain text */
    color: #fff;
}

.option-button.plain-text:hover {
    background-color: #218838; /* Darker green on hover */
}

.option-button.copy-article {
    background-color: #dc3545; /* Red for copy article */
    color: #fff;
}

.option-button.copy-article:hover {
    background-color: #c82333; /* Darker red on hover */
}

/* Old Articles Page Styles */
.articles-list {
    display: flex;
    flex-direction: column;
    gap: 20px;
}

.article-card {
    background-color: #fff;
    padding: 20px;
    border-radius: 10px;
    box-shadow: 0 2px 10px rgba(0, 0, 0, 0.1);
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.article-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 15px rgba(0, 0, 0, 0.2);
}

.article-card h3 {
    margin-bottom: 10px;
    color: #007BFF;
    font-size: 24px;
}

.article-date {
    color: #666;
    font-size: 14px;
    margin-bottom: 15px;
}

.article-content {
    margin-top: 10px;
}

.article-display {
    background-color: #f9f9f9;
    padding: 15px;
    border-radius: 5px;
    border: 1px solid #ddd;
    margin-bottom: 15px;
}

.article-options {
    display: flex;
    gap: 10px;
}

.option-button {
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    cursor: pointer;
    font-size: 16px;
    transition: background-color 0.3s ease;
}

.option-button.html-format {
    background-color: #007BFF; /* Blue for HTML format */
    color: #fff;
}

.option-button.html-format:hover {
    background-color: #0056b3; /* Darker blue on hover */
}

.option-button.plain-text {
    background-color: #28a745; /* Green for plain text */
    color: #fff;
}

.option-button.plain-text:hover {
    background-color: #218838; /* Darker green on hover */
}

.option-button.copy-article {
    background-color: #dc3545; /* Red for copy article */
    color: #fff;
}

.option-button.copy-article:hover {
    background-color: #c82333; /* Darker red on hover */
}
/* No Articles Message */
.no-articles-message {
    text-align: center;
    padding: 40px;
    background-color: #f9f9f9;
    border-radius: 10px;
    border: 1px solid #ddd;
    margin-top: 20px;
}

.no-articles-message p {
    font-size: 18px;
    color: #333;
    margin-bottom: 20px;
}

/* Call-to-Action Button */
.cta-button {
    background-color: #630783; /* Purple color to match the header */
    color: #fff;
    padding: 10px 20px;
    border: none;
    border-radius: 5px;
    font-size: 16px;
    font-weight: bold;
    text-decoration: none;
    transition: background-color 0.3s ease;
}

.cta-button:hover {
    background-color: #4e0667; /* Darker purple on hover */
}

/* General Styles for Dashboard Section */
.dashboard-section {
    margin-bottom: 2rem;
    padding: 1.5rem;
    background-color: #f9f9f9;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
}

.dashboard-section h2 {
    font-size: 1.5rem;
    margin-bottom: 1.5rem;
    color: #333;
}

/* Content Settings Grid */
.content-settings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

/* Setting Card Styles */
.setting-card {
    background-color: #fff;
    padding: 1.5rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0, 0, 0, 0.1);
    text-align: center;
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.setting-card:hover {
    transform: translateY(-5px);
    box-shadow: 0 4px 8px rgba(0, 0, 0, 0.2);
}

.setting-icon {
    font-size: 2rem;
    color: #007bff;
    margin-bottom: 1rem;
}

.setting-card h3 {
    font-size: 1.25rem;
    margin-bottom: 0.75rem;
    color: #333;
}

.setting-card p {
    font-size: 0.9rem;
    color: #666;
    margin-bottom: 0.5rem;
}

.recommended {
    color: #28a745;
    font-weight: bold;
}

/* Responsive Design */
@media (max-width: 768px) {
    .content-settings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .content-settings-grid {
        grid-template-columns: 1fr;
    }
}

/* Core Settings Grid */
.core-settings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1rem 0;
}

/* Character Counter */
.counter {
    font-size: 0.8rem;
    color: #666;
    float: right;
}

/* Media Hub Table */
.media-hub table {
    width: 100%;
    border-collapse: collapse;
    margin-top: 0.5rem;
}
.media-hub th, .media-hub td {
    padding: 0.8rem;
    border: 1px solid #ddd;
    text-align: left;
}
.media-hub th {
    background-color: #f5f5f5;
}

/* SEO Keywords Section */
.seo-keywords {
    display: flex;
    gap: 1rem;
    align-items: center;
}
.nlp-toggle {
    font-size: 0.9rem;
    color: #007bff;
    cursor: pointer;
}

/* Hint Text */
.hint {
    font-size: 0.8rem;
    color: #666;
    font-style: italic;
}

/* Responsive Adjustments */
@media (max-width: 768px) {
    .core-settings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}
@media (max-width: 480px) {
    .core-settings-grid {
        grid-template-columns: 1fr;
    }
}
/* Core Settings Grid */
.core-settings-grid {
    display: grid;
    grid-template-columns: repeat(4, 1fr);
    gap: 1rem;
    margin: 1.5rem 0;
    background: #fff;
    padding: 1rem;
    border-radius: 8px;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

/* Media Hub Table */
.media-hub table {
    width: 100%;
    border-collapse: collapse;
    background: white;
    border-radius: 8px;
    overflow: hidden;
    box-shadow: 0 1px 3px rgba(0,0,0,0.05);
}

.media-hub th {
    background: #f7fafc;
    padding: 12px;
    text-align: left;
    font-weight: 600;
    border-bottom: 2px solid #e2e8f0;
}

.media-hub td {
    padding: 12px;
    border-bottom: 1px solid #edf2f7;
}

/* SEO Keywords */
.seo-keywords {
    display: flex;
    gap: 10px;
    align-items: center;
}

.keyword-tag {
    background: #e2e8f0;
    padding: 5px 12px;
    border-radius: 15px;
    margin: 3px;
    display: inline-flex;
    align-items: center;
}

.remove-tag {
    cursor: pointer;
    margin-left: 8px;
    font-weight: bold;
}

/* Content Settings Cards */
.content-settings-grid {
    display: grid;
    grid-template-columns: repeat(3, 1fr);
    gap: 1.5rem;
}

.setting-card {
    background: white;
    padding: 1.5rem;
    border-radius: 8px;
    text-align: center;
    box-shadow: 0 2px 4px rgba(0,0,0,0.05);
}

.setting-card i {
    font-size: 2rem;
    color: #4299e1;
    margin-bottom: 1rem;
}

/* Responsive Design */
@media (max-width: 768px) {
    .core-settings-grid,
    .content-settings-grid {
        grid-template-columns: repeat(2, 1fr);
    }
}

@media (max-width: 480px) {
    .core-settings-grid,
    .content-settings-grid {
        grid-template-columns: 1fr;
    }
}

.option-buttons {
    display: flex;
    flex-wrap: wrap;
    gap: 10px;
}

.option-button {
    display: flex;
    align-items: center;
    padding: 10px;
    border: 1px solid #ccc;
    border-radius: 5px;
    cursor: pointer;
    background-color: #f9f9f9;
    transition: background-color 0.3s ease;
}

.option-button:hover {
    background-color: #e0e0e0;
}

.option-button input[type="radio"] {
    margin-right: 10px;
}

/* Article History Page Styles */
.no-articles-message {
    text-align: center;
    margin-top: 2rem;
}

.no-articles-message p {
    font-size: 1.2rem;
    color: #666;
}

.cta-button {
    display: inline-block;
    margin-top: 1rem;
    padding: 0.5rem 1rem;
    background-color: #007bff;
    color: white;
    text-decoration: none;
    border-radius: 4px;
}

.cta-button:hover {
    background-color: #0056b3;
}

.articles-list {
    margin-top: 2rem;
}

.article-card {
    background-color: white;
    border: 1px solid #ddd;
    border-radius: 8px;
    padding: 1rem;
    margin-bottom: 1rem;
}

.article-card h3 {
    margin-top: 0;
}

.article-date {
    color: #888;
    font-size: 0.9rem;
}

.article-options {
    margin-top: 1rem;
}

.option-button {
    margin-right: 0.5rem;
    padding: 0.5rem 1rem;
    background-color: #f8f9fa;
    border: 1px solid #ddd;
    border-radius: 4px;
    cursor: pointer;
}

.option-button:hover {
    background-color: #e9ecef;
}

.delete-article {
    background-color: #dc3545;
    color: white;
    border: none;
}

.delete-article:hover {
    background-color: #c82333;
}




