/* General body styles, typography, basic layout elements, header, footer */
body {
    font-family: 'Inter', sans-serif;
    line-height: 1.6;
    color: #333;
    /* Default text color */
    background-color: #f4f7f6;
    /* Light gray background */
    margin: 0;
    padding: 0;
    display: flex;
    flex-direction: column;
    min-height: 100vh;
}

.container {
    width: 90%;
    max-width: 1200px;
    margin: 0 auto;
}

/* Header and Footer common styles */
header {
    /* background-color: #fff; Already handled by Tailwind */
    /* box-shadow: 0 2px 4px rgba(0,0,0,0.1); Already handled by Tailwind */
}

footer {
    /* background-color: #34495e; Already handled by Tailwind */
    /* color: #ecf0f1; Already handled by Tailwind */
    margin-top: auto;
    /* Pushes footer to the bottom */
}

/* Basic link styling */
a {
    /* color: #3498db; Tailwind primary */
    text-decoration: none;
}

/* a:hover {
color: #2980b9; Tailwind primary hover
} */

/* Button common styles (can be extended by Tailwind) */
.btn {
    display: inline-block;
    padding: 10px 20px;
    border-radius: 6px;
    text-align: center;
    cursor: pointer;
    transition: background-color 0.3s ease, transform 0.2s ease;
}

.btn-primary {
    background-color: #3498db;
    /* Tailwind primary */
    color: white;
}

.btn-primary:hover {
    background-color: #2980b9;
    transform: translateY(-1px);
}

.btn-secondary {
    background-color: #2ecc71;
    /* Tailwind secondary */
    color: white;
}

.btn-secondary:hover {
    background-color: #27ae60;
    transform: translateY(-1px);
}

/* Utility classes */
.text-center {
    text-align: center;
}

.mb-1 {
    margin-bottom: 0.25rem;
}

.mb-2 {
    margin-bottom: 0.5rem;
}

.mb-4 {
    margin-bottom: 1rem;
}

.mb-8 {
    margin-bottom: 2rem;
}

.mb-12 {
    margin-bottom: 3rem;
}

/* Responsive adjustments if not fully covered by Tailwind */
@media (max-width: 768px) {
    .container {
        width: 95%;
    }

    /* Further mobile specific common styles if needed */
}

/* Ensure Font Awesome icons are vertically aligned well with text */
.fas,
.fab {
    vertical-align: middle;
}

/* Styles for the new desktop tools navigation bar */
#tools-menu-desktop ul li a {
    padding: 0.5rem 0.25rem;
    /* Adjust padding for links */
    display: inline-block;
}

#tools-menu-desktop ul li a:hover {
    /* Tailwind hover:text-primary handles color */
    /* Add other hover effects if needed */
}