/* Stock Listing Container */
.stock-listing {
    margin-top: 1rem;
}

/* Stock Table */
.stock-listing .stock-table {
    border-top: 1px solid var(--an-border-light);
    margin-top: 1rem;
}

/* Stock Row */
.stock-listing .stock-row {
    display: flex;
    justify-content: space-between;
    align-items: center;
    padding: 0;
    padding-top: 1rem;
    border-bottom: 1px solid var(--an-border-light);
    transition: background 0.2s ease-in-out;
}

.stock-listing .stock-row:hover {
    background-color: var(--an-bg-hover);
}

/* Stock Info Section */
.stock-listing .stock-info {
    flex: 1;
    min-width: 200px;
    flex-grow: 1;
    padding: 0 1rem;
}

.stock-listing .stock-title {
    font-size: 1.4rem;
    font-weight: 600;
    margin-bottom: 0;
    margin-right: 0.5rem;
}

.stock-listing .stock-title a {
    text-decoration: none;
    color: var(--an-text-secondary) !important;
}

.stock-listing .stock-title a:hover {
    color: var(--an-text-primary) !important;
}

.stock-listing .stock-meta {
    font-size: 0.85rem;
    color: var(--an-text-muted);
}

/* Stock Description */
.stock-listing .stock-description {
    font-size: 1.2rem;
    text-align: left;
    color: var(--an-text-secondary);
}

/* Stock Price Section */
.stock-listing .stock-price-container {
    text-align: right;    
}

.stock-listing .stock-price {
    font-size: 1.2rem;
    font-weight: 700;   
}

/* Badge Styling */
.stock-listing .badge {
    font-size: 0.85rem;
    padding: 0.3rem 0.6rem;
}