/* Custom styles for the Market Analysis page to enhance Tailwind's utility classes */

/* Style for the main container of a market item */
.market-item {
    transition: box-shadow 0.3s ease-in-out;
}

.market-item:hover {
    box-shadow: 0 4px 12px rgba(0, 0, 0, 0.08);
}

/* Chevron icon transition */
.feather-chevron-down {
    transition: transform 0.3s ease;
}

/* Styling for the startup justification box */
.justification-box {
    background-color: #f8f9fa; /* A light grey, slightly different from the parent */
    border-left: 3px solid #3b82f6; /* Blue-500 from Tailwind */
    padding: 0.75rem;
    margin-top: 0.5rem;
    border-radius: 0.25rem;
}