/* Custom Styles for MyCompanionTree */

/* 
   We are primarily using Tailwind CSS for styling.
   Use this file for custom overrides or specific animations.
*/

body {
    font-family: 'Inter', sans-serif;
    overflow-x: hidden;
    width: 100%;
}

/* Example: Custom scrollbar */
::-webkit-scrollbar {
    width: 8px;
}

::-webkit-scrollbar-track {
    background: #f1f1f1;
}

::-webkit-scrollbar-thumb {
    background: #10B981;
    /* Tailwind green-500 */
    border-radius: 4px;
}

::-webkit-scrollbar-thumb:hover {
    background: #059669;
    /* Tailwind green-600 */
}

/* Global Typography Overrides */
h1,
h2,
h3,
h4,
h5,
h6 {
    color: #111827;
    /* gray-900 */
}

/* Button Base Styles (if not using utility classes) */
.btn {
    display: inline-flex;
    align-items: center;
    justify-content: center;
    padding: 0.5rem 1rem;
    border-radius: 0.375rem;
    font-weight: 500;
    transition: all 0.2s;
}

.btn-primary {
    background-color: #059669;
    color: white;
}

.btn-primary:hover {
    background-color: #047857;
}

/* Card Hover Effects */
.card-hover {
    transition: transform 0.3s ease, box-shadow 0.3s ease;
}

.card-hover:hover {
    transform: translateY(-5px);
    box-shadow: 0 10px 15px -3px rgba(0, 0, 0, 0.1), 0 4px 6px -2px rgba(0, 0, 0, 0.05);
}

/* Form Input Focus */
input:focus,
textarea:focus,
select:focus {
    outline: none;
    border-color: #10B981;
    box-shadow: 0 0 0 3px rgba(16, 185, 129, 0.2);
}