body {
    font-family: 'Source Sans Pro', sans-serif;
    margin: 0;
    padding: 0;
}

.light-theme {
    background-color: #f5f5f5;
    color: #333;
}

.dark-theme {
    background-color: #333;
    color: #f5f5f5;
}

.header {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 15px 20px;
    background-color: #6200ea;
    color: white;
    position: relative;
}

.logo {
    font-size: 24px;
    font-weight: 600;
    display: flex;
    align-items: center;
}

.logo i {
    margin-right: 10px;
}

.menu {
    display: flex;
    align-items: center;
    gap: 20px;
}

.menu a {
    color: white;
    text-decoration: none;
}

.theme-switcher {
    cursor: pointer;
}

.menu-toggle {
    display: none;
    color: white;
    font-size: 24px;
    cursor: pointer;
}

/* Mobile Styles */
@media (max-width: 768px) {
    .menu {
        display: none;
        flex-direction: column;
        background-color: #6200ea;
        position: absolute;
        top: 60px;
        right: 0;
        width: 100%;
        padding: 15px 0;
        text-align: center;
        z-index: 999;
    }

    .menu.show-menu {
        display: flex;
    }

    .menu-toggle {
        display: block;
    }
}

.headline,
.subheadline {
    text-align: center;
    margin-top: 30px;
}

.headline {
    font-size: 32px;
}

.subheadline {
    font-size: 18px;
}

.box-container {
    background-color: white;
    border-radius: 8px;
    padding: 20px;
    box-shadow: 0px 4px 12px rgba(0, 0, 0, 0.1);
    margin-bottom: 30px;
    max-width: 1200px;
    margin: 20px auto;
}

.dark-theme .box-container {
    background-color: #444;
    color: #f5f5f5;
}

.generator-preview-container {
    display: flex;
    justify-content: space-between;
    gap: 20px;
}

.generator-box,
.preview-box {
    width: 48%;
}

@media (max-width: 768px) {
    .generator-preview-container {
        flex-direction: column;
    }

    .generator-box,
    .preview-box {
        width: 100%;
    }
}

.form-group {
    margin-bottom: 20px;
    position: relative;
}

input,
select,
textarea {
    padding: 12px;
    border: 2px solid #ccc;
    border-radius: 6px;
    font-size: 16px;
    width: 100%;
    box-sizing: border-box;
    background-color: inherit;
    color: inherit;
    transition: all 0.3s ease;
}

input:focus,
select:focus,
textarea:focus {
    border-color: #6200ea;
    box-shadow: 0px 0px 5px rgba(98, 0, 234, 0.4);
}

textarea {
    resize: vertical;
}

.form-group label {
    font-weight: 600;
    margin-bottom: 15px;
    display: block;
}

.preview-box textarea {
    min-height: 300px;
    background-color: #f0f0f0;
    border: 2px solid #ccc;
    padding: 12px;
    border-radius: 6px;
    width: 100%;
    margin-bottom: 10px;
}

p#robots-refuse-message {
    color: red;
    font-weight: 600;
}

.preview-box .instructions {
    font-size: 14px;
    color: #777;
    margin-bottom: 10px;
}

.button-group {
    display: flex;
    gap: 10px;
}

.button-group button {
    padding: 10px 20px;
    font-size: 16px;
    border: none;
    border-radius: 4px;
    cursor: pointer;
}

.button-group .btn-success {
    background-color: #28a745;
    color: white;
}

.button-group .btn-danger {
    background-color: #dc3545;
    color: white;
}

.button-group .btn-info {
    background-color: #17a2b8;
    color: white;
}

.copy-success-message {
    margin-top: 10px;
    font-size: 14px;
    color: #28a745;
}

.footer-bar {
    margin-top: 10px;
}

.footer .social-icons {
    display: flex;
    justify-content: center;
    gap: 15px;
}

.footer-bar p {
    text-align: center;
}

/* Tooltip Styling */
.info-icon {
    margin-left: 8px;
    color: #888;
    cursor: pointer;
    position: relative;
}

.info-icon:hover::before {
    content: attr(data-tooltip);
    position: absolute;
    background: rgba(0, 0, 0, 0.7);
    color: white;
    padding: 8px;
    border-radius: 4px;
    top: -30px;
    left: 0;
    white-space: nowrap;
    font-size: 12px;
    z-index: 100;
    font-family: 'Source Sans Pro', sans-serif;
}

.logo-link {
    text-decoration: none;
    color: white;
    display: flex;
    align-items: center;
}

.logo-link:hover {
    color: #f0f0f0; /* Optional hover effect */
}
.copy-notification {
    display: none;
    background-color: #28a745;
    color: white;
    padding: 10px;
    margin-top: 15px;
    text-align: center;
    border-radius: 4px;
    font-size: 14px;
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}

.copy-notification.show {
    display: block;
    opacity: 1;
}
.faq-item {
    margin-bottom: 40px;
}
.dark-theme .preview-box textarea {
    border-color: #595959;
    background: #393939;
}
.dark-theme input, .dark-theme select, .dark-theme textarea {
    border-color: #595959;
    background: #393939;
}
.dark-theme header.header,.dark-theme .menu {
    border-color: #595959;
    background: #494949;
}