/* Custom styles for Freetools4all */

/* Base body styles */
body {
    font-family: "Inter", sans-serif;
    -webkit-font-smoothing: antialiased;
    -moz-osx-font-smoothing: grayscale;
    background-color: #f0fff0; /* Very light green background */
}

/* Basic SVG icon styling */
.icon {
    display: inline-block;
    width: 3rem; /* Larger icon size */
    height: 3rem;
    color: #4CAF50; /* Light Green primary color for icons */
}

/* Message Box Styling */
#message-box {
    position: fixed;
    top: 2rem;
    right: 2rem;
    background-color: #4CAF50; /* Green for success */
    color: white;
    padding: 1rem 1.5rem;
    border-radius: 0.5rem;
    box-shadow: 0 4px 6px rgba(0, 0, 0, 0.1);
    z-index: 1000;
    display: none; /* Hidden by default */
    opacity: 0;
    transition: opacity 0.3s ease-in-out;
}
#message-box.error {
    background-color: #ef4444; /* Red for error */
}

/* Custom color classes for Light Green scheme */
/* Primary color */
.bg-light-green-primary { background-color: #4CAF50; }
.hover\:bg-light-green-dark:hover { background-color: #388E3C; } /* Darker for hover */
.text-light-green-primary { color: #4CAF50; }
.hover\:text-light-green-primary:hover { color: #4CAF50; }

/* Light variant for backgrounds/accents */
.bg-light-green-light { background-color: #E8F5E9; }

/* Dark text/border variant (can use a darker shade of green or a deep gray) */
.text-light-green-dark { color: #2E7D32; } /* A darker green for strong text */
.border-light-green-primary { border-color: #4CAF50; }
.tool-card,
.tool-card h3,
.tool-card p {
  text-decoration: none;}
