/* General Reset and Base Styles */
body, html {
    margin: 0;
    padding: 0;
    font-family: Arial, sans-serif;
    background: #f9f9f9;
    color: #333;
}


.header-banner {
    background-color: #007BFF;
    color: white;
    padding: 10px 20px;
    text-align: left;
    font-size: 18px;
    display: flex;
    justify-content: space-between;
    align-items: center;
}

.return-icon {
    display: inline-block;
    text-decoration: none;
    color: white;
    background: #0056b3; /* Darker blue to stand out against the header */
    padding: 5px 10px;
    border-radius: 50%; /* Makes the background circle-shaped */
    font-size: 20px; /* Adjust size as needed */
    transition: background-color 0.3s ease;
}

.return-icon:hover {
    background-color: #003d82; /* Even darker blue on hover for feedback */
}

.main-container {
    width: 90%;
    max-width: 800px;
    margin: 20px auto;
    padding: 20px;
    background-color: white;
    border-radius: 8px;
    box-shadow: 0 0 10px rgba(0,0,0,0.1);
}

h1 {
    color: #333;
    text-align: center;
}

/* Styling for settings section */
#settings {
    margin-top: 20px;
    border-top: 2px solid #eee;
    padding-top: 20px;
}

label {
    display: block;
    margin: 10px 0;
    font-size: 16px;
}

input[type="text"], input[type="number"], select {
    width: 100%;
    padding: 8px;
    margin-top: 5px;
    box-sizing: border-box;
    border: 1px solid #ccc;
    border-radius: 4px;
}

input[type="checkbox"] {
    margin-right: 5px;
}

button {
    background-color: #28a745;
    color: white;
    border: none;
    padding: 10px 20px;
    margin-top: 20px;
    cursor: pointer;
    width: 100%;
    border-radius: 5px;
    font-size: 16px;
}

button:hover {
    background-color: #218838;
}

/* Dynamic title inputs styling */
.title {
    text-align: center;
    font-size: 25px; /* Updated from 12px to 25px as required */
    margin-bottom: 5px;
}

#titlesDiv {
    margin-top: 20px;
}

#titlesDiv label {
    display: flex;
    align-items: center;
    justify-content: space-between;
}

#titlesDiv input[type="text"] {
    flex-grow: 1;
    margin-left: 10px;
}

/* Responsive Design */
@media (max-width: 600px) {
    .header-banner {
        font-size: 16px;
    }

    .return-icon {
        font-size: 18px;
    }
}

h6 {
    /* Aligns the copyright text to the bottom of the main content */
    float:right;
    bottom: 10px;
    margin-right: 10px;
    color: #808080;
}

#fontSizeSelector {
    overflow: hidden;
    height: 0;
    transition: height 0.2s ease-out; /* Smooth transition for the height */
}