/*
Theme Name: SmallPdf24 Theme
Author: Your Name
Version: 1.0
Description: A custom theme for SmallPdf24 tools page
*/

body {
    margin: 0;
    font-family: Arial, sans-serif;
    transition: all 0.3s ease;
}

.header {
    background: #1F2833;
    color: #fff;
    padding: 1rem;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.logo {
    display: flex;
    align-items: center;
}

.logo-circle {
    width: 40px;
    height: 40px;
    background: #66FCF1;
    border-radius: 50%;
    display: flex;
    align-items: center;
    justify-content: center;
    margin-right: 10px;
}

.logo-circle span {
    color: #1F2833;
    font-weight: bold;
}

.nav-links {
    list-style: none;
    display: flex;
    gap: 1rem;
}

.nav-links li a {
    color: #fff;
    text-decoration: none;
}

.toggle-buttons {
    display: flex;
    gap: 10px;
}

.toggle-button {
    padding: 5px 10px;
    background: #66FCF1;
    border: none;
    cursor: pointer;
}

.slider {
    text-align: center;
    padding: 2rem;
    background: #0B0C10;
    color: #fff;
}

.slider p {
    display: none;
}

.slider p.active {
    display: block;
}

.container {
    padding: 2rem;
}

.search-container {
    text-align: center;
    margin-bottom: 2rem;
}

.search-bar {
    display: inline-flex;
}

.search-input {
    padding: 10px;
    width: 300px;
}

.search-button {
    padding: 10px;
    background: #66FCF1;
    border: none;
    cursor: pointer;
}

.button-grid {
    display: grid;
    grid-template-columns: repeat(auto-fit, minmax(150px, 1fr));
    gap: 1rem;
}

.design-button {
    background: #45A29E;
    color: #fff;
    padding: 1rem;
    text-align: center;
    border-radius: 5px;
}

.design-button .icon {
    font-size: 1.5rem;
}

.newsletter {
    background: #1F2833;
    color: #fff;
    padding: 2rem;
    text-align: center;
}

.newsletter-form {
    margin-top: 1rem;
}

.newsletter-input {
    padding: 10px;
    width: 250px;
}

.newsletter-button {
    padding: 10px;
    background: #66FCF1;
    border: none;
    cursor: pointer;
}

.footer {
    background: #0B0C10;
    color: #fff;
    padding: 1rem;
    text-align: center;
}

.footer-links a {
    color: #66FCF1;
    margin: 0 10px;
    text-decoration: none;
}

.back-to-top {
    position: fixed;
    bottom: 20px;
    right: 20px;
    background: #66FCF1;
    color: #1F2833;
    width: 40px;
    height: 40px;
    text-align: center;
    line-height: 40px;
    border-radius: 50%;
    cursor: pointer;
    display: none;
}

/* Add more styles from your original CSS as needed */